schema->create('migrations', function (Blueprint $table) { $table->increments('id'); $table->string('sprinkle'); $table->string('migration'); $table->integer('batch'); $table->timestamps(); $table->engine = 'InnoDB'; $table->collation = 'utf8_unicode_ci'; $table->charset = 'utf8'; }); // Drop the old `version` table if found if ($this->schema->hasTable('version')) { $this->schema->drop('version'); } } /** * {@inheritDoc} */ public function down() { $this->schema->drop('migrations'); } }