bigInteger('id')->default(0); $table->integer('site_id')->default(0)->index('fk_exp_set_idx'); $table->string('name', 128)->default(''); $table->string('plugin', 128)->default(''); $table->boolean('active')->nullable(); $table->string('url', 128)->nullable(); $table->primary(['id','site_id']); $table->unique(['site_id','name'], 'UNIQUE'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('ab_export'); } }