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