increments('id'); $table->string('username', 64); $table->string('domain', 255); $table->string('password', 255); $table->integer('quota')->default('0'); $table->tinyInteger('enabled')->default('0'); $table->tinyInteger('sendonly')->default('0'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('accounts'); } }