Lae/database/migrations/2022_08_12_123308_create_modules_table.php

48 lines
1023 B
PHP

<?php
use App\Models\Module\Module;
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
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 (env('APP_ENV') == 'local') {
$module = [
'id' => 'test',
'name' => 'Example Module',
'api_token' => '123456'
];
Module::create($module);
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('modules');
}
};