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'); + }); + } +}