Files
c-cms-legacy/database/migrations/2018_08_29_172124_create_configs_table.php
TheGamecraft 8ef8057bfa ALPHA 3.0.2
2018-09-05 11:35:41 -04:00

35 lines
700 B
PHP

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateConfigsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('configs', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->boolean('state');
$table->text('data');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('configs');
}
}