37 lines
797 B
PHP
37 lines
797 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\File;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('locale', function (Blueprint $table) {
|
|
$table->string('mKey')->primary();
|
|
$table->string('mValue');
|
|
});
|
|
|
|
// Populate the table data
|
|
$data = File::json(database_path('data/locale.json'));
|
|
\App\Models\Game\Common\Locale::upsert($data, ['mKey']);
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('locale');
|
|
}
|
|
};
|