From b0d7b6accc135fe8dfcbdf6e6a1dad24a2fb5e9e Mon Sep 17 00:00:00 2001 From: Jason Judge Date: Thu, 19 Dec 2019 16:23:16 +0000 Subject: [PATCH] Support microtime --- database/migrations/2018_02_08_002658_create_notables.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2018_02_08_002658_create_notables.php b/database/migrations/2018_02_08_002658_create_notables.php index 509bd8b..462c4bc 100644 --- a/database/migrations/2018_02_08_002658_create_notables.php +++ b/database/migrations/2018_02_08_002658_create_notables.php @@ -17,7 +17,7 @@ public function up() Schema::create($tableName, function (Blueprint $table) { $table->bigIncrements('id'); - $table->timestamps(); + $table->timestamps(6); $table->bigInteger('note_id')->unsigned();