1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* Copyright 2014 SURFnet bv |
5
|
|
|
* |
6
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
7
|
|
|
* you may not use this file except in compliance with the License. |
8
|
|
|
* You may obtain a copy of the License at |
9
|
|
|
* |
10
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0 |
11
|
|
|
* |
12
|
|
|
* Unless required by applicable law or agreed to in writing, software |
13
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, |
14
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
15
|
|
|
* See the License for the specific language governing permissions and |
16
|
|
|
* limitations under the License. |
17
|
|
|
*/ |
|
|
|
|
18
|
|
|
|
19
|
|
|
namespace Surfnet\Migrations; |
20
|
|
|
|
21
|
|
|
use Doctrine\DBAL\Schema\Schema; |
22
|
|
|
use Doctrine\Migrations\AbstractMigration; |
23
|
|
|
|
24
|
|
|
/** |
25
|
|
|
* Auto-generated Migration: Please modify to your needs! |
26
|
|
|
*/ |
|
|
|
|
27
|
|
|
class Version20141031133057 extends AbstractMigration |
28
|
|
|
{ |
29
|
|
|
public function up(Schema $schema): void |
30
|
|
|
{ |
31
|
|
|
$this->abortIf( |
32
|
|
|
$this->connection->getDatabasePlatform()->getName() != 'mysql', |
|
|
|
|
33
|
|
|
'Migration can only be executed safely on \'mysql\'.', |
34
|
|
|
); |
35
|
|
|
|
36
|
|
|
$sql = <<<SQL |
37
|
|
|
CREATE TABLE event_stream ( |
38
|
|
|
uuid varchar(36) NOT NULL, |
39
|
|
|
playhead int(11) NOT NULL, |
40
|
|
|
metadata text NOT NULL, |
41
|
|
|
payload text NOT NULL, |
42
|
|
|
recorded_on varchar(32) NOT NULL, |
43
|
|
|
type varchar(150) NOT NULL, |
44
|
|
|
PRIMARY KEY (uuid), |
45
|
|
|
UNIQUE KEY unique_playhead (playhead) |
46
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 |
47
|
|
|
SQL; |
48
|
|
|
|
49
|
|
|
$this->addSql($sql); |
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
public function down(Schema $schema): void |
53
|
|
|
{ |
54
|
|
|
$this->abortIf( |
55
|
|
|
$this->connection->getDatabasePlatform()->getName() != 'mysql', |
|
|
|
|
56
|
|
|
'Migration can only be executed safely on \'mysql\'.', |
57
|
|
|
); |
58
|
|
|
|
59
|
|
|
$this->addSql('DROP TABLE event_stream'); |
60
|
|
|
} |
61
|
|
|
} |
62
|
|
|
|