blob: 182dbfbb6f2c4968b9ae0e8aff6f4af630bf0892 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<?php
/**
* UF Config Manager
*
* @link https://github.com/lcharette/UF_ConfigManager
* @copyright Copyright (c) 2016 Louis Charette
* @license https://github.com/lcharette/UF_ConfigManager/blob/master/LICENSE (MIT License)
*/
namespace UserFrosting\Sprinkle\ConfigManager\Database\Migrations\v100;
use UserFrosting\System\Bakery\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Schema\Builder;
/**
* Settings table migration
* @extends Migration
*/
class SettingsTable extends Migration
{
/**
* {@inheritDoc}
*/
public function up()
{
if (!$this->schema->hasTable('settings')) {
$this->schema->create('settings', function (Blueprint $table) {
$table->increments('id');
$table->string('key');
$table->string('value')->nullable();
$table->boolean('cached')->default(1);
$table->timestamps();
$table->engine = 'InnoDB';
$table->collation = 'utf8_unicode_ci';
$table->charset = 'utf8';
});
}
}
/**
* {@inheritDoc}
*/
public function down()
{
$this->schema->drop('settings');
}
}
|