add languages

This commit is contained in:
Benjamin Takats
2022-12-18 21:15:23 +01:00
parent 31c9a66244
commit cf6afdcb43
489 changed files with 589 additions and 36883 deletions

View File

@@ -0,0 +1,30 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
/**
* Run the migrations.
* @return void
*/
public function up()
{
Schema::table('users', function (Blueprint $table) {
$table->string('current_language')
->default('de');
});
}
/**
* Reverse the migrations.
* @return void
*/
public function down()
{
Schema::table('users', function (Blueprint $table) {
//
});
}
};

View File

@@ -0,0 +1,46 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('translations', function (Blueprint $table) {
$table->index([
'value',
]);
});
Schema::table('languages', function (Blueprint $table) {
$table->index([
'name',
'language',
]);
});
Schema::table('countries', function (Blueprint $table) {
$table->index([
'name',
'code',
'longitude',
'latitude',
]);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
};