From bdc3ab17dc99d07b30e94458bed9d8052b98f5ab Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sun, 2 Jan 2022 23:27:05 -0700 Subject: [PATCH] Add migration --- ...3_add_last_status_at_to_profiles_table.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 database/migrations/2022_01_03_052623_add_last_status_at_to_profiles_table.php diff --git a/database/migrations/2022_01_03_052623_add_last_status_at_to_profiles_table.php b/database/migrations/2022_01_03_052623_add_last_status_at_to_profiles_table.php new file mode 100644 index 000000000..9390b3ac6 --- /dev/null +++ b/database/migrations/2022_01_03_052623_add_last_status_at_to_profiles_table.php @@ -0,0 +1,32 @@ +timestamp('last_status_at')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('profiles', function (Blueprint $table) { + $table->dropColumn('last_status_at'); + }); + } +}