File: //home/xedaptot/ai.naniguide.com/database/migrations/2016_06_10_041252_create_languages_table.php
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateLanguagesTable extends Migration
{
/**
* Run the migrations.
*/
public function up()
{
Schema::create('languages', function (Blueprint $table) {
$table->increments('id');
$table->uuid('uid');
$table->string('name');
$table->string('code')->nullable();
$table->string('region_code')->nullable();
$table->string('status')->nullable();
$table->boolean('is_default')->default(0);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down()
{
Schema::drop('languages');
}
}