34 lines
		
	
	
		
			677 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			677 B
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
 | 
						|
use Illuminate\Database\Migrations\Migration;
 | 
						|
use Illuminate\Database\Schema\Blueprint;
 | 
						|
use Illuminate\Support\Facades\Schema;
 | 
						|
 | 
						|
class CreateSettingsTable extends Migration
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function up()
 | 
						|
    {
 | 
						|
        Schema::create('settings', function (Blueprint $table): void {
 | 
						|
            $table->id();
 | 
						|
 | 
						|
            $table->string('group')->index();
 | 
						|
            $table->string('name');
 | 
						|
            $table->boolean('locked');
 | 
						|
            $table->json('payload');
 | 
						|
 | 
						|
            $table->timestamps();
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function down()
 | 
						|
    {
 | 
						|
        Schema::dropIfExists('settings');
 | 
						|
    }
 | 
						|
}
 |