aboutsummaryrefslogtreecommitdiff
path: root/db/migrations/1.43_step_00159_datafieldentry.php
blob: 3e71a302026c1c0324c999be2a7e4b15456bc1e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

class Step00159DataFieldEntry extends Migration
{
    function description()
    {
        return 'alter table datafields';
    }

    function up()
    {
        DBManager::get()->exec("ALTER TABLE `datafields` MODIFY COLUMN `type` ENUM('bool','textline','textarea','selectbox','date','time','email','phone','radio','combo','link') NOT NULL DEFAULT 'textline'");
    }

    function down()
    {
        DBManager::get()->exec("ALTER TABLE `datafields` MODIFY COLUMN `type` ENUM('bool','textline','textarea','selectbox','date','time','email','url','phone','radio','combo') NOT NULL DEFAULT 'textline'");
    }
}
?>