PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
vendor
/
botble
/
platform
/
base
/
database
/
migrations
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; class CreateBaseTables extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('meta_boxes', function (Blueprint $table) { $table->id(); $table->string('meta_key', 255); $table->text('meta_value')->nullable(); $table->integer('reference_id')->unsigned()->index(); $table->string('reference_type', 120); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('meta_boxes'); } }
[+]
..
[-] 2013_04_09_032329_create_base_tables.php
[edit]