From dcbaabaa3587cb1265d1791c21dce4101405b3a0 Mon Sep 17 00:00:00 2001 From: printempw Date: Thu, 28 Jul 2016 16:21:02 +0800 Subject: [PATCH] fix column of textures table --- app/Services/Migration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/Migration.php b/app/Services/Migration.php index 85e2662f..8f564e84 100644 --- a/app/Services/Migration.php +++ b/app/Services/Migration.php @@ -44,7 +44,7 @@ class Migration $table->integer('size'); $table->integer('uploader'); $table->integer('public'); - $table->dateTime('last_modified'); + $table->dateTime('upload_at'); }); Schema::create($prefix.'options', function($table) {