mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-14 11:12:09 -05:00
25 lines
570 B
PHP
25 lines
570 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
public function up()
|
|
{
|
|
Schema::create('settings', function (Blueprint $table): void {
|
|
$table->id();
|
|
|
|
$table->string('group');
|
|
$table->string('name');
|
|
$table->boolean('locked')->default(false);
|
|
$table->json('payload');
|
|
|
|
$table->timestamps();
|
|
|
|
$table->unique(['group', 'name']);
|
|
});
|
|
}
|
|
};
|