change table struct

This commit is contained in:
decoder
2024-03-18 19:33:31 +05:00
parent 4cb505276f
commit cf7c57228a
7 changed files with 2077 additions and 1851 deletions

View File

@@ -16,6 +16,8 @@ return new class extends Migration
Schema::table('forms', function (Blueprint $table) {
$table->string('name_ru')->after('name')->nullable();
$table->string('name_est')->after('name_ru')->nullable();
$table->string('description_ru')->after('description')->nullable();
$table->string('description_est')->after('description_ru')->nullable();
});
}