mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-20 10:08:35 +00:00
Updated owned since to be nullable in misc_services table
Updated owned since to be nullable in misc_services table
This commit is contained in:
parent
d7dd4d3895
commit
8113ee4e9d
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ class CreateMiscsTable extends Migration
|
||||||
$table->char('id', 8)->unique();
|
$table->char('id', 8)->unique();
|
||||||
$table->string('name');
|
$table->string('name');
|
||||||
$table->tinyInteger('active')->default(1);
|
$table->tinyInteger('active')->default(1);
|
||||||
$table->date('owned_since');
|
$table->date('owned_since')->nullable();
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue