PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
core
/
dashboard
/
database
/
migrations
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateDashboardWidgetTables extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('dashboard_widgets', function (Blueprint $table) { $table->id(); $table->string('name', 120); $table->timestamps(); }); Schema::create('dashboard_widget_settings', function (Blueprint $table) { $table->id(); $table->text('settings')->nullable(); $table->integer('user_id')->unsigned()->index()->references('id')->on('users'); $table->integer('widget_id')->unsigned()->index()->references('id')->on('widgets'); $table->tinyInteger('order')->unsigned()->default(0); $table->tinyInteger('status')->unsigned()->default(1); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('dashboard_widgets'); Schema::dropIfExists('dashboard_widget_settings'); } }
[+]
..
[-] 2016_11_28_032840_create_dashboard_widget_tables.php
[edit]