diff --git a/database/migrations/2022_02_11_022150_create_miscs_table.php b/database/migrations/2022_02_11_022150_create_miscs_table.php index 38fea19..7d05f5e 100644 --- a/database/migrations/2022_02_11_022150_create_miscs_table.php +++ b/database/migrations/2022_02_11_022150_create_miscs_table.php @@ -17,7 +17,7 @@ class CreateMiscsTable extends Migration $table->char('id', 8)->unique(); $table->string('name'); $table->tinyInteger('active')->default(1); - $table->date('owned_since'); + $table->date('owned_since')->nullable(); $table->timestamps(); }); }