increments('id'); $table->string('source_username', 64); $table->string('source_domain', 255); $table->string('destination_username', 255); $table->string('destination_domain', 255)->default('')->nullable(); $table->text('comment')->nullable(); $table->tinyInteger('enabled')->default('0'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('aliases'); } }