mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-23 21:27:44 +03:00
Merge pull request #374 from acelaya/feature/migrations-v2
Feature/migrations v2
This commit is contained in:
commit
1a1868c7f4
6 changed files with 45 additions and 29 deletions
23
CHANGELOG.md
23
CHANGELOG.md
|
@ -4,6 +4,29 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com), and this project adheres to [Semantic Versioning](https://semver.org).
|
The format is based on [Keep a Changelog](https://keepachangelog.com), and this project adheres to [Semantic Versioning](https://semver.org).
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
* [#153](https://github.com/shlinkio/shlink/issues/153) Updated to [doctrine/migrations](https://github.com/doctrine/migrations) version 2.0.0
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
* *Nothing*
|
||||||
|
|
||||||
|
#### Deprecated
|
||||||
|
|
||||||
|
* *Nothing*
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
* *Nothing*
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
* *Nothing*
|
||||||
|
|
||||||
|
|
||||||
## 1.16.2 - 2019-03-05
|
## 1.16.2 - 2019-03-05
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
"cakephp/chronos": "^1.2",
|
"cakephp/chronos": "^1.2",
|
||||||
"cocur/slugify": "^3.0",
|
"cocur/slugify": "^3.0",
|
||||||
"doctrine/cache": "^1.6",
|
"doctrine/cache": "^1.6",
|
||||||
"doctrine/migrations": "^1.4",
|
"doctrine/migrations": "^2.0",
|
||||||
"doctrine/orm": "^2.5",
|
"doctrine/orm": "^2.5",
|
||||||
"endroid/qr-code": "^1.7",
|
"endroid/qr-code": "^1.7",
|
||||||
"firebase/php-jwt": "^4.0",
|
"firebase/php-jwt": "^4.0",
|
||||||
|
|
|
@ -3,21 +3,24 @@ declare(strict_types=1);
|
||||||
|
|
||||||
namespace ShlinkMigrations;
|
namespace ShlinkMigrations;
|
||||||
|
|
||||||
use Doctrine\DBAL\Migrations\AbstractMigration;
|
use Doctrine\DBAL\DBALException;
|
||||||
use Doctrine\DBAL\Schema\Schema;
|
use Doctrine\DBAL\Schema\Schema;
|
||||||
|
use Doctrine\DBAL\Schema\SchemaException;
|
||||||
|
use Doctrine\Migrations\AbstractMigration;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Auto-generated Migration: Please modify to your needs!
|
* Auto-generated Migration: Please modify to your needs!
|
||||||
*/
|
*/
|
||||||
class Version20160819142757 extends AbstractMigration
|
class Version20160819142757 extends AbstractMigration
|
||||||
{
|
{
|
||||||
const MYSQL = 'mysql';
|
private const MYSQL = 'mysql';
|
||||||
const SQLITE = 'sqlite';
|
private const SQLITE = 'sqlite';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Schema $schema
|
* @throws DBALException
|
||||||
|
* @throws SchemaException
|
||||||
*/
|
*/
|
||||||
public function up(Schema $schema)
|
public function up(Schema $schema): void
|
||||||
{
|
{
|
||||||
$db = $this->connection->getDatabasePlatform()->getName();
|
$db = $this->connection->getDatabasePlatform()->getName();
|
||||||
$table = $schema->getTable('short_urls');
|
$table = $schema->getTable('short_urls');
|
||||||
|
@ -31,9 +34,9 @@ class Version20160819142757 extends AbstractMigration
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Schema $schema
|
* @throws DBALException
|
||||||
*/
|
*/
|
||||||
public function down(Schema $schema)
|
public function down(Schema $schema): void
|
||||||
{
|
{
|
||||||
$db = $this->connection->getDatabasePlatform()->getName();
|
$db = $this->connection->getDatabasePlatform()->getName();
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,19 +3,16 @@ declare(strict_types=1);
|
||||||
|
|
||||||
namespace ShlinkMigrations;
|
namespace ShlinkMigrations;
|
||||||
|
|
||||||
use Doctrine\DBAL\Migrations\AbstractMigration;
|
|
||||||
use Doctrine\DBAL\Schema\Schema;
|
use Doctrine\DBAL\Schema\Schema;
|
||||||
use Doctrine\DBAL\Types\Type;
|
use Doctrine\DBAL\Types\Type;
|
||||||
|
use Doctrine\Migrations\AbstractMigration;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Auto-generated Migration: Please modify to your needs!
|
* Auto-generated Migration: Please modify to your needs!
|
||||||
*/
|
*/
|
||||||
class Version20160820191203 extends AbstractMigration
|
class Version20160820191203 extends AbstractMigration
|
||||||
{
|
{
|
||||||
/**
|
public function up(Schema $schema): void
|
||||||
* @param Schema $schema
|
|
||||||
*/
|
|
||||||
public function up(Schema $schema)
|
|
||||||
{
|
{
|
||||||
// Check if the tables already exist
|
// Check if the tables already exist
|
||||||
$tables = $schema->getTables();
|
$tables = $schema->getTables();
|
||||||
|
@ -29,7 +26,7 @@ class Version20160820191203 extends AbstractMigration
|
||||||
$this->createShortUrlsInTagsTable($schema);
|
$this->createShortUrlsInTagsTable($schema);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function createTagsTable(Schema $schema)
|
private function createTagsTable(Schema $schema): void
|
||||||
{
|
{
|
||||||
$table = $schema->createTable('tags');
|
$table = $schema->createTable('tags');
|
||||||
$table->addColumn('id', Type::BIGINT, [
|
$table->addColumn('id', Type::BIGINT, [
|
||||||
|
@ -46,7 +43,7 @@ class Version20160820191203 extends AbstractMigration
|
||||||
$table->setPrimaryKey(['id']);
|
$table->setPrimaryKey(['id']);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function createShortUrlsInTagsTable(Schema $schema)
|
private function createShortUrlsInTagsTable(Schema $schema): void
|
||||||
{
|
{
|
||||||
$table = $schema->createTable('short_urls_in_tags');
|
$table = $schema->createTable('short_urls_in_tags');
|
||||||
$table->addColumn('short_url_id', Type::BIGINT, [
|
$table->addColumn('short_url_id', Type::BIGINT, [
|
||||||
|
@ -70,10 +67,7 @@ class Version20160820191203 extends AbstractMigration
|
||||||
$table->setPrimaryKey(['short_url_id', 'tag_id']);
|
$table->setPrimaryKey(['short_url_id', 'tag_id']);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
public function down(Schema $schema): void
|
||||||
* @param Schema $schema
|
|
||||||
*/
|
|
||||||
public function down(Schema $schema)
|
|
||||||
{
|
{
|
||||||
$schema->dropTable('short_urls_in_tags');
|
$schema->dropTable('short_urls_in_tags');
|
||||||
$schema->dropTable('tags');
|
$schema->dropTable('tags');
|
||||||
|
|
|
@ -3,10 +3,10 @@ declare(strict_types=1);
|
||||||
|
|
||||||
namespace ShlinkMigrations;
|
namespace ShlinkMigrations;
|
||||||
|
|
||||||
use Doctrine\DBAL\Migrations\AbstractMigration;
|
|
||||||
use Doctrine\DBAL\Schema\Schema;
|
use Doctrine\DBAL\Schema\Schema;
|
||||||
use Doctrine\DBAL\Schema\SchemaException;
|
use Doctrine\DBAL\Schema\SchemaException;
|
||||||
use Doctrine\DBAL\Types\Type;
|
use Doctrine\DBAL\Types\Type;
|
||||||
|
use Doctrine\Migrations\AbstractMigration;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Auto-generated Migration: Please modify to your needs!
|
* Auto-generated Migration: Please modify to your needs!
|
||||||
|
@ -14,10 +14,9 @@ use Doctrine\DBAL\Types\Type;
|
||||||
class Version20171021093246 extends AbstractMigration
|
class Version20171021093246 extends AbstractMigration
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @param Schema $schema
|
|
||||||
* @throws SchemaException
|
* @throws SchemaException
|
||||||
*/
|
*/
|
||||||
public function up(Schema $schema)
|
public function up(Schema $schema): void
|
||||||
{
|
{
|
||||||
$shortUrls = $schema->getTable('short_urls');
|
$shortUrls = $schema->getTable('short_urls');
|
||||||
if ($shortUrls->hasColumn('valid_since')) {
|
if ($shortUrls->hasColumn('valid_since')) {
|
||||||
|
@ -33,10 +32,9 @@ class Version20171021093246 extends AbstractMigration
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Schema $schema
|
|
||||||
* @throws SchemaException
|
* @throws SchemaException
|
||||||
*/
|
*/
|
||||||
public function down(Schema $schema)
|
public function down(Schema $schema): void
|
||||||
{
|
{
|
||||||
$shortUrls = $schema->getTable('short_urls');
|
$shortUrls = $schema->getTable('short_urls');
|
||||||
if (! $shortUrls->hasColumn('valid_since')) {
|
if (! $shortUrls->hasColumn('valid_since')) {
|
||||||
|
|
|
@ -3,10 +3,10 @@ declare(strict_types=1);
|
||||||
|
|
||||||
namespace ShlinkMigrations;
|
namespace ShlinkMigrations;
|
||||||
|
|
||||||
use Doctrine\DBAL\Migrations\AbstractMigration;
|
|
||||||
use Doctrine\DBAL\Schema\Schema;
|
use Doctrine\DBAL\Schema\Schema;
|
||||||
use Doctrine\DBAL\Schema\SchemaException;
|
use Doctrine\DBAL\Schema\SchemaException;
|
||||||
use Doctrine\DBAL\Types\Type;
|
use Doctrine\DBAL\Types\Type;
|
||||||
|
use Doctrine\Migrations\AbstractMigration;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Auto-generated Migration: Please modify to your needs!
|
* Auto-generated Migration: Please modify to your needs!
|
||||||
|
@ -14,10 +14,9 @@ use Doctrine\DBAL\Types\Type;
|
||||||
class Version20171022064541 extends AbstractMigration
|
class Version20171022064541 extends AbstractMigration
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @param Schema $schema
|
|
||||||
* @throws SchemaException
|
* @throws SchemaException
|
||||||
*/
|
*/
|
||||||
public function up(Schema $schema)
|
public function up(Schema $schema): void
|
||||||
{
|
{
|
||||||
$shortUrls = $schema->getTable('short_urls');
|
$shortUrls = $schema->getTable('short_urls');
|
||||||
if ($shortUrls->hasColumn('max_visits')) {
|
if ($shortUrls->hasColumn('max_visits')) {
|
||||||
|
@ -31,10 +30,9 @@ class Version20171022064541 extends AbstractMigration
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Schema $schema
|
|
||||||
* @throws SchemaException
|
* @throws SchemaException
|
||||||
*/
|
*/
|
||||||
public function down(Schema $schema)
|
public function down(Schema $schema): void
|
||||||
{
|
{
|
||||||
$shortUrls = $schema->getTable('short_urls');
|
$shortUrls = $schema->getTable('short_urls');
|
||||||
if (! $shortUrls->hasColumn('max_visits')) {
|
if (! $shortUrls->hasColumn('max_visits')) {
|
||||||
|
|
Loading…
Reference in a new issue