From 61c8fd4e265b98301420c5986c4a97f6a6345712 Mon Sep 17 00:00:00 2001 From: cp6 Date: Sat, 19 Feb 2022 23:57:19 +1100 Subject: [PATCH] Added timestamps to OS table Added timestamps to OS table --- database/migrations/2022_02_01_031629_create_os_table.php | 1 + 1 file changed, 1 insertion(+) diff --git a/database/migrations/2022_02_01_031629_create_os_table.php b/database/migrations/2022_02_01_031629_create_os_table.php index 68d544f..0e92443 100644 --- a/database/migrations/2022_02_01_031629_create_os_table.php +++ b/database/migrations/2022_02_01_031629_create_os_table.php @@ -16,6 +16,7 @@ class CreateOsTable extends Migration Schema::create('os', function (Blueprint $table) { $table->id()->autoIncrement(); $table->string('name')->unique(); + $table->timestamps(); }); }