increments('id'); $table->dateTime('added')->nullable()->index('added'); $table->text('txt'); $table->enum('security_level', ['normal', 'mod'])->default('normal'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('sitelog'); } }