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:
cp6 2022-02-19 00:25:03 +11:00
parent d7dd4d3895
commit 8113ee4e9d

View File

@ -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();
});
}