8 use Phinx\Migration\AbstractMigration;
12 public function up() {
14 $cufeaturegateTable = $this->table(
'cufeaturegate');
15 if ($cufeaturegateTable) {
17 ->addColumn(
'params',
'string', [
'comment' =>
'Storage for any extra params.',
'null' =>
true])
22 public function down() {
24 $cufeaturegateTable = $this->table(
'cufeaturegate');
25 if ($cufeaturegateTable) {
27 ->removeColumn(
'params')