Skip to content

Commit

Permalink
Change table schema
Browse files Browse the repository at this point in the history
  • Loading branch information
rkit committed Jul 19, 2016
1 parent ce9a8d0 commit 3efb12e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/migrations/m141230_075228_create_file.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public function safeUp()
'size' => Schema::TYPE_INTEGER . " NOT NULL DEFAULT 0",
'extension' => "char(10) NOT NULL DEFAULT ''",
'mime' => Schema::TYPE_STRING . "(100) NOT NULL DEFAULT ''",
'date_create' => Schema::TYPE_TIMESTAMP . " DEFAULT NULL",
'date_update' => Schema::TYPE_TIMESTAMP . " DEFAULT NULL",
'date_create' => Schema::TYPE_TIMESTAMP . " NULL DEFAULT NULL",
'date_update' => Schema::TYPE_TIMESTAMP . " NULL DEFAULT NULL",
'ip' => Schema::TYPE_BIGINT . "(20) NOT NULL DEFAULT 0",
'tmp' => "tinyint(1) NOT NULL DEFAULT 0",
'position' => Schema::TYPE_INTEGER . " NOT NULL DEFAULT 0",
Expand Down

0 comments on commit 3efb12e

Please sign in to comment.