2016-01-21 04:08:09 +01:00
|
|
|
<?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()
|
|
|
|
{
|
2016-01-23 21:42:25 +01:00
|
|
|
Schema::dropIfExists('settings');
|
2016-01-21 04:08:09 +01:00
|
|
|
}
|
|
|
|
}
|