mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 13:49:03 +03:00
45 lines
1,003 B
PHP
45 lines
1,003 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkMigrations;
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
use Doctrine\DBAL\Schema\SchemaException;
|
|
use Doctrine\DBAL\Types\Type;
|
|
use Doctrine\Migrations\AbstractMigration;
|
|
|
|
/**
|
|
* Auto-generated Migration: Please modify to your needs!
|
|
*/
|
|
class Version20171022064541 extends AbstractMigration
|
|
{
|
|
/**
|
|
* @throws SchemaException
|
|
*/
|
|
public function up(Schema $schema): void
|
|
{
|
|
$shortUrls = $schema->getTable('short_urls');
|
|
if ($shortUrls->hasColumn('max_visits')) {
|
|
return;
|
|
}
|
|
|
|
$shortUrls->addColumn('max_visits', Type::INTEGER, [
|
|
'unsigned' => true,
|
|
'notnull' => false,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @throws SchemaException
|
|
*/
|
|
public function down(Schema $schema): void
|
|
{
|
|
$shortUrls = $schema->getTable('short_urls');
|
|
if (! $shortUrls->hasColumn('max_visits')) {
|
|
return;
|
|
}
|
|
|
|
$shortUrls->dropColumn('max_visits');
|
|
}
|
|
}
|