PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
packages
/
widget
/
database
/
migrations
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateWidgetsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('widgets', function (Blueprint $table) { $table->id(); $table->string('widget_id', 120); $table->string('sidebar_id', 120); $table->string('theme', 120); $table->tinyInteger('position')->unsigned()->default(0); $table->text('data')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('widgets'); } }
[+]
..
[-] 2016_12_16_084601_create_widgets_table.php
[edit]