schema->hasTable('members')) { $this->schema->create('members', function (Blueprint $table) { $table->increments('id'); $table->string('city', 255)->nullable(); $table->string('country', 255)->nullable(); $table->engine = 'InnoDB'; $table->collation = 'utf8_unicode_ci'; $table->charset = 'utf8'; $table->foreign('id')->references('id')->on('users'); }); } } public function down() { $this->schema->drop('members'); } }