increments('actionlog_id'); $table->integer('id'); $table->string('module', 64); $table->string('action', 64); $table->text('remarks')->nullable(); $table->timestamp('created_dt'); $table->integer('created_by')->default(0); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('admin_action_logs'); } }