diff --git a/database/migrations/2024_11_25_181031_remove_date_created_from_criteria_site.php b/database/migrations/2024_11_25_181031_remove_date_created_from_criteria_site.php new file mode 100644 index 00000000..8c64a8fd --- /dev/null +++ b/database/migrations/2024_11_25_181031_remove_date_created_from_criteria_site.php @@ -0,0 +1,32 @@ +dropColumn('date_created'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('criteria_site', function (Blueprint $table) { + $table->timestamp('date_created')->nullable(); + }); + } +}