From 15793496e8d56769c792cf39673c6e6dea3ec4d9 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 28 Jun 2018 21:15:57 +0200 Subject: Preparing for complete rewrite.. --- .../Database/Migrations/v410/MigrationTable.php | 58 ---------------------- 1 file changed, 58 deletions(-) delete mode 100644 main/app/system/Database/Migrations/v410/MigrationTable.php (limited to 'main/app/system/Database/Migrations/v410/MigrationTable.php') diff --git a/main/app/system/Database/Migrations/v410/MigrationTable.php b/main/app/system/Database/Migrations/v410/MigrationTable.php deleted file mode 100644 index 732738a..0000000 --- a/main/app/system/Database/Migrations/v410/MigrationTable.php +++ /dev/null @@ -1,58 +0,0 @@ -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'); - } -} -- cgit v1.2.3