1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
class TextmarkupDatafield extends Migration
{
public function description()
{
return 'add textmarkup type to datafields';
}
public function up()
{
DBManager::get()->exec("ALTER TABLE datafields CHANGE type
type ENUM('bool','textline','textarea','textmarkup','selectbox','date','time','email','phone','radio','combo','link','selectboxmultiple')
NOT NULL DEFAULT 'textline'");
}
public function down()
{
DBManager::get()->exec("ALTER TABLE datafields CHANGE type
type ENUM('bool','textline','textarea','selectbox','date','time','email','phone','radio','combo','link','selectboxmultiple')
NOT NULL DEFAULT 'textline'");
}
}
|