id(); $table->integer('position'); $table->boolean('active'); $table->timestamps(); }); Schema::create('page_descriptions', function (Blueprint $table) { $table->id(); $table->integer('page_id'); $table->string('locale'); $table->string('title'); $table->text('content'); $table->string('meta_title'); $table->string('meta_description'); $table->string('meta_keyword'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { // } };