PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
platform
/
plugins
/
translation
/
database
/
migrations
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateTranslationsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('translations', function (Blueprint $table) { $table->id(); $table->integer('status')->default(0); $table->string('locale'); $table->string('group'); $table->string('key'); $table->text('value')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('translations'); } }
[+]
..
[-] 2016_10_07_193005_create_translations_table.php
[edit]