1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 14:42:31 +01:00

update items migration

This commit is contained in:
devfake 2016-02-24 12:48:02 +01:00
parent c430c04e7d
commit 767b09576a

View File

@ -24,6 +24,7 @@ class CreateItemsTable extends Migration
$table->string('rating'); $table->string('rating');
$table->integer('released'); $table->integer('released');
$table->integer('seen'); $table->integer('seen');
$table->boolean('removed')->default(0);
$table->integer('created_at'); $table->integer('created_at');
}); });
} }