Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
database
/
migrations
:
2014_04_02_193005_create_translations_table.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateTranslationsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('ltm_translations', function(Blueprint $table) { $table->increments('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::drop('ltm_translations'); } }