aboutsummaryrefslogtreecommitdiff
path: root/db/migrations/5.5.2_add_siteinfo_draft_field.php
blob: 7071e82234b012ce9c2337f68f2fa58a2cab139f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

class AddSiteinfoDraftField extends Migration {

    public function description()
    {
        return 'Creates configuration for sites to be in draft mode';
    }

    public function up()
    {
        DBManager::get()->exec("ALTER TABLE `siteinfo_details` ADD `draft_status` TINYINT NOT NULL DEFAULT '0' AFTER `position`");
    }

    public function down()
    {
        DBManager::get()->exec("ALTER TABLE `siteinfo_details` DROP COLUMN `draft_status`");
    }



}