1
0
mirror of https://github.com/cp6/my-idlers.git synced 2024-09-28 19:27:08 +02:00

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