db->create($this->tableName, function ($table) { $table->increments('id'); $table->string('username'); $table->string('email')->unique(); $table->string('password'); $table->string('verification_code'); $table->timestamps(); }); } /** * Undo the migration */ public function down() { $this->db->dropIfExists($this->tableName); } /** * Init the migration */ public function init() { $this->db = $this->container['schema']; } }