This commit is contained in:
Kevin Adametz 2020-01-02 19:22:30 +01:00
parent f03862b523
commit 1a43060996
42 changed files with 1160 additions and 83 deletions

View file

@ -23,6 +23,15 @@ class CreateCountriesTable extends Migration
$table->string('fr', 100);
$table->string('it', 100);
$table->string('ru', 100);
$table->boolean('active')->default(true);
$table->text('trans_name')->nullable();
$table->text('attr')->nullable();
$table->timestamps();
});
}