integer('id')->nullable(); $table->integer('site_id')->nullable(); $table->bigInteger('date_orig')->nullable(); $table->bigInteger('date_last')->nullable(); $table->integer('static_page_category_id')->nullable()->index('cat'); $table->bigInteger('date_start')->nullable()->index('start'); $table->bigInteger('date_expire')->nullable()->index('expire'); $table->integer('sort_order')->nullable(); $table->boolean('active')->nullable(); $table->string('name', 128)->nullable()->index('name'); $table->text('description')->nullable(); $table->unique(['site_id','id'], 'IDS'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('ab_static_page'); } }