Skip to content

Commit

Permalink
Update m171214_101829_create_action_store_table.php
Browse files Browse the repository at this point in the history
  • Loading branch information
forecho authored Jul 18, 2018
1 parent 167fe79 commit 4f08b6e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/migrations/m171214_101829_create_action_store_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ public function up()
{
$this->createTable($this->tableName, [
'id' => $this->primaryKey(),
'type' => $this->string()->notNull(),
'type' => $this->string(20)->notNull(),
'value' => $this->integer()->defaultValue(1),
'user_type' => $this->string()->defaultValue('user'),
'user_type' => $this->string(20)->defaultValue('user'),
'user_id' => $this->integer()->notNull(),
'model' => $this->string()->notNull(),
'model' => $this->string(20)->notNull(),
'model_id' => $this->integer()->notNull(),
'created_at' => $this->integer()->defaultValue(null),
'updated_at' => $this->integer()->defaultValue(null),
Expand Down

0 comments on commit 4f08b6e

Please sign in to comment.