Lae/database/migrations/2022_08_12_123308_create_modules_table.php
2023-01-14 18:02:27 +08:00

47 lines
1.0 KiB
PHP

<?php
use App\Models\Module;
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(): void
{
Schema::create('modules', function (Blueprint $table) {
$table->string('id')->index()->primary()->unique();
$table->string('name')->index();
// api token
$table->string('api_token')->nullable()->unique()->index();
});
// if env is local
if (config('app.env') == 'local') {
$module = [
'id' => 'test',
'name' => 'Example Module',
'api_token' => '123456'
];
(new App\Models\Module)->create($module);
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down(): void
{
Schema::dropIfExists('modules');
}
};