From f5b96ac814a73af0503ed75da7088a3bd6aaec3c Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sat, 9 Jan 2021 00:06:04 -0700 Subject: [PATCH] Update migrations, add last_active_at to users table --- ...0905_add_last_active_at_to_users_table.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 database/migrations/2020_12_30_070905_add_last_active_at_to_users_table.php diff --git a/database/migrations/2020_12_30_070905_add_last_active_at_to_users_table.php b/database/migrations/2020_12_30_070905_add_last_active_at_to_users_table.php new file mode 100644 index 000000000..86cb0334b --- /dev/null +++ b/database/migrations/2020_12_30_070905_add_last_active_at_to_users_table.php @@ -0,0 +1,32 @@ +timestamp('last_active_at')->nullable()->index()->after('deleted_at'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn('last_active_at'); + }); + } +}