bigInteger('id')->nullable(); $table->integer('site_id')->nullable(); $table->bigInteger('date_orig')->nullable(); $table->bigInteger('account_id')->nullable(); $table->string('module', 64)->nullable(); $table->string('method', 64)->nullable(); $table->text('message')->nullable(); $table->unique(['site_id','id'], 'IDS'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('ab_log_error'); } }