Added missing migration for presentation

public comments

Change-Id: I1599cf39f3ba0b98ff91e797a48aea815bc664e5
This commit is contained in:
smarcet 2019-07-23 18:08:23 -03:00
parent 24000248e2
commit c33cd07554

View File

@ -0,0 +1,49 @@
<?php namespace Database\Migrations\Model;
/**
* Copyright 2019 OpenStack Foundation
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
use Doctrine\Migrations\AbstractMigration;
use Doctrine\DBAL\Schema\Schema as Schema;
use LaravelDoctrine\Migrations\Schema\Table;
use LaravelDoctrine\Migrations\Schema\Builder;
/**
* Class Version20190723210551
* @package Database\Migrations\Model
*/
final class Version20190723210551 extends AbstractMigration
{
/**
* @param Schema $schema
*/
public function up(Schema $schema)
{
$builder = new Builder($schema);
if($schema->hasTable("SummitPresentationComment") && !$builder->hasColumn("SummitPresentationComment", "IsPublic")) {
$builder->table('SummitPresentationComment', function (Table $table) {
$table->boolean("IsPublic")->setDefault(false);
});
}
}
/**
* @param Schema $schema
*/
public function down(Schema $schema)
{
$builder = new Builder($schema);
if($schema->hasTable("SummitPresentationComment") && $builder->hasColumn("SummitPresentationComment", "IsPublic")) {
$builder->table('SummitPresentationComment', function (Table $table) {
$table->dropColumn("IsPublic");
});
}
}
}