37 lines
873 B
PHP
Executable File
37 lines
873 B
PHP
Executable File
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
class CreateSettingsTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create(config('backpack.settings.table_name'), function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->string('key')->unique();
|
|
$table->string('name');
|
|
$table->string('description')->nullable();
|
|
$table->text('value')->nullable();
|
|
$table->text('field');
|
|
$table->tinyInteger('active');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists(config('backpack.settings.table_name'));
|
|
}
|
|
}
|