diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2018-09-16 14:08:09 +0200 |
---|---|---|
committer | Igor Scheller <igor.scheller@igorshp.de> | 2018-09-25 14:02:55 +0200 |
commit | 0b0890f425ced27b2204a046296de4cccdac4eb8 (patch) | |
tree | 5b7a697185ca543ef9c0f0959532dfe8bfb9e3f1 /src/Database/Migration | |
parent | 104e4f4c437376eb739dd3ef2de603855947a557 (diff) |
Session: Added DatabaseHandler, replaces Symfony PdoSessionHandler
Diffstat (limited to 'src/Database/Migration')
-rw-r--r-- | src/Database/Migration/Migrate.php | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/Database/Migration/Migrate.php b/src/Database/Migration/Migrate.php index cec8bc4a..9c6d3e43 100644 --- a/src/Database/Migration/Migrate.php +++ b/src/Database/Migration/Migrate.php @@ -77,6 +77,21 @@ class Migrate } /** + * Setup migration tables + */ + public function initMigration() + { + if ($this->schema->hasTable($this->table)) { + return; + } + + $this->schema->create($this->table, function (Blueprint $table) { + $table->increments('id'); + $table->string('migration'); + }); + } + + /** * Get all migrated migrations * * @return Collection @@ -156,21 +171,6 @@ class Migrate } /** - * Setup migration tables - */ - protected function initMigration() - { - if ($this->schema->hasTable($this->table)) { - return; - } - - $this->schema->create($this->table, function (Blueprint $table) { - $table->increments('id'); - $table->string('migration'); - }); - } - - /** * Init a table query * * @return Builder |