nooktheme/database/migrations/2016_01_23_203119_create_settings_table.php
mowetentertainment1 eb5b65cec6 initial commit
2025-11-01 19:45:11 -04:00

27 lines
510 B
PHP

<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateSettingsTable extends Migration
{
/**
* Run the migrations.
*/
public function up()
{
Schema::create('settings', function (Blueprint $table) {
$table->string('key')->unique();
$table->text('value');
});
}
/**
* Reverse the migrations.
*/
public function down()
{
Schema::dropIfExists('settings');
}
}