Don't set status limit, we may have more in the future

This commit is contained in:
James Brooks
2014-11-19 16:51:14 +00:00
parent f4f5b6dbcb
commit 5b0929eb54

View File

@@ -17,7 +17,7 @@ class CreateComponentsTable extends Migration {
$table->increments('id');
$table->string('name');
$table->string('description')->nullable()->default(null);
$table->tinyInteger('status', 1)->default(1);
$table->tinyInteger('status')->default(1);
$table->timestamps();
$table->index('status');