for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreatePagesTables extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
Schema::create('page__pages', function (Blueprint $table) {
$table->engine = 'InnoDB';
$table->increments('id');
$table->boolean('is_home')->default(0);
$table->string('template');
$table->timestamps();
});
Schema::create('page__page_translations', function (Blueprint $table) {
$table->integer('page_id')->unsigned();
$table->string('locale')->index();
$table->string('title');
$table->string('slug');
$table->boolean('status')->default(1);
$table->text('body');
$table->string('meta_title')->nullable();
$table->string('meta_description')->nullable();
$table->string('og_title')->nullable();
$table->string('og_description')->nullable();
$table->string('og_image')->nullable();
$table->string('og_type')->nullable();
$table->unique(['page_id', 'locale']);
$table->foreign('page_id')->references('id')->on('page__pages')->onDelete('cascade');
}
* Reverse the migrations.
public function down()
Schema::drop('page__page_translations');
Schema::drop('page__pages');