integer('id')->nullable(); $table->integer('site_id')->nullable(); $table->string('name', 32)->nullable(); $table->unique(['site_id','id'], 'IDS'); $table->index(['id','site_id'], 'main'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('ab_asset_pool'); } }