Added timestamps to OS table

Added timestamps to OS table
This commit is contained in:
cp6 2022-02-19 23:57:19 +11:00
parent 1000148e86
commit 61c8fd4e26

View File

@ -16,6 +16,7 @@ class CreateOsTable extends Migration
Schema::create('os', function (Blueprint $table) {
$table->id()->autoIncrement();
$table->string('name')->unique();
$table->timestamps();
});
}