diff --git a/database/migrations/2024_12_06_192028_change_content_data_type_in_educational_programs_table.php b/database/migrations/2024_12_06_192028_change_content_data_type_in_educational_programs_table.php new file mode 100644 index 0000000..c8f41b5 --- /dev/null +++ b/database/migrations/2024_12_06_192028_change_content_data_type_in_educational_programs_table.php @@ -0,0 +1,25 @@ +text('about_program')->change(); + $table->text('program_features')->change(); + + }); + } + + public function down(): void + { + Schema::table('educational_programs', function (Blueprint $table) { + $table->string('about_program')->change(); + $table->string('program_features')->change(); + }); + } +};