Skip to content

Commit d13479f

Browse files
committed
Do not generate ENUM types on postgres if x-db-type is specified for the enum column
fixes cebe#173
1 parent 70a449f commit d13479f

File tree

18 files changed

+48
-4
lines changed

18 files changed

+48
-4
lines changed

src/lib/ColumnToCode.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ public function isJson():bool
226226

227227
public function isEnum():bool
228228
{
229-
return !empty($this->column->enumValues);
229+
return !empty($this->column->enumValues) && empty($this->column->xDbType);
230230
}
231231

232232
public function isDecimal()

src/lib/migrations/BaseMigrationBuilder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ public function newColStr(string $tableAlias, \cebe\yii2openapi\db\ColumnSchema
479479

480480
public static function isEnum(\yii\db\ColumnSchema $columnSchema): bool
481481
{
482-
if (!empty($columnSchema->enumValues) && is_array($columnSchema->enumValues)) {
482+
if (!empty($columnSchema->enumValues) && is_array($columnSchema->enumValues) && empty($columnSchema->xDbType)) {
483483
return true;
484484
}
485485
return false;

src/lib/migrations/PostgresMigrationBuilder.php

+4
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,10 @@ protected function createEnumMigrations():void
147147
$tableAlias = $this->model->getTableAlias();
148148
$enums = $this->model->getEnumAttributes();
149149
foreach ($enums as $attr) {
150+
if (!empty($attr->xDbType)) {
151+
// do not generate enum types when custom x-db-type is used
152+
continue;
153+
}
150154
$this->migration
151155
->addUpCode($this->recordBuilder->createEnum($tableAlias, $attr->columnName, $attr->enumValues), true)
152156
->addDownCode($this->recordBuilder->dropEnum($tableAlias, $attr->columnName), true);

tests/migrations/m100000_000000_pgsql.php

+1
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ public function safeUp()
103103
'json3' => $this->json()->defaultValue(Json::encode(['foo' => 'bar', 'bar' => 'baz'])),
104104
'json4' => "json DEFAULT '" . new Expression(Json::encode(['ffo' => 'bar'])) . "'",
105105
'status' => '"'.$enumTypeName.'"',
106+
'status_x' => 'varchar(10)',
106107
'search' => 'tsvector'
107108
]);
108109
$columns = [

tests/specs/enum/change/maria/app/migrations_maria_db/m200000_000001_create_table_newcolumns.php

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ public function up()
1010
$this->createTable('{{%newcolumns}}', [
1111
'id' => $this->primaryKey(),
1212
'new_column' => 'enum("ONE", "TWO", "THREE") NOT NULL DEFAULT \'ONE\'',
13+
0 => 'new_column_x varchar(10) NOT NULL DEFAULT \'ONE\'',
1314
]);
1415
}
1516

tests/specs/enum/change/mysql/app/migrations_mysql_db/m200000_000001_create_table_newcolumns.php

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ public function up()
1010
$this->createTable('{{%newcolumns}}', [
1111
'id' => $this->primaryKey(),
1212
'new_column' => 'enum("ONE", "TWO", "THREE") NOT NULL DEFAULT \'ONE\'',
13+
0 => 'new_column_x varchar(10) NOT NULL DEFAULT \'ONE\'',
1314
]);
1415
}
1516

tests/specs/enum/change/pgsql/app/migrations_pgsql_db/m200000_000001_create_table_newcolumns.php

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ public function safeUp()
1111
$this->createTable('{{%newcolumns}}', [
1212
'id' => $this->primaryKey(),
1313
'new_column' => '"enum_itt_newcolumns_new_column" NOT NULL DEFAULT \'ONE\'',
14+
0 => '"new_column_x" varchar(10) NOT NULL DEFAULT \'ONE\'',
1415
]);
1516
}
1617

tests/specs/enum/fresh/maria/app/migrations_maria_db/m200000_000001_create_table_newcolumns.php

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ public function up()
1010
$this->createTable('{{%newcolumns}}', [
1111
'id' => $this->primaryKey(),
1212
'new_column' => 'enum("ONE", "TWO", "THREE") NOT NULL DEFAULT \'ONE\'',
13+
0 => 'new_column_x varchar(10) NOT NULL DEFAULT \'ONE\'',
1314
]);
1415
}
1516

tests/specs/enum/fresh/mysql/app/migrations_mysql_db/m200000_000001_create_table_newcolumns.php

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ public function up()
1010
$this->createTable('{{%newcolumns}}', [
1111
'id' => $this->primaryKey(),
1212
'new_column' => 'enum("ONE", "TWO", "THREE") NOT NULL DEFAULT \'ONE\'',
13+
0 => 'new_column_x varchar(10) NOT NULL DEFAULT \'ONE\'',
1314
]);
1415
}
1516

tests/specs/enum/fresh/mysql/enum.yaml

+10
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,16 @@ components:
5959
default:
6060
ONE
6161
nullable: false
62+
new_column_x:
63+
type: string
64+
enum:
65+
- ONE
66+
- TWO
67+
- THREE
68+
default:
69+
ONE
70+
x-db-type: varchar(10)
71+
nullable: false
6272

6373
Editcolumn:
6474
type: object

tests/specs/enum/fresh/pgsql/app/migrations_pgsql_db/m200000_000001_create_table_newcolumns.php

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ public function safeUp()
1111
$this->createTable('{{%newcolumns}}', [
1212
'id' => $this->primaryKey(),
1313
'new_column' => '"enum_itt_newcolumns_new_column" NOT NULL DEFAULT \'ONE\'',
14+
0 => '"new_column_x" varchar(10) NOT NULL DEFAULT \'ONE\'',
1415
]);
1516
}
1617

tests/specs/enum/new_column/maria/app/migrations_maria_db/m200000_000001_change_table_newcolumns.php

+2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@ class m200000_000001_change_table_newcolumns extends \yii\db\Migration
88
public function up()
99
{
1010
$this->addColumn('{{%newcolumns}}', 'new_column', 'enum("ONE", "TWO", "THREE") NOT NULL DEFAULT \'ONE\'');
11+
$this->db->createCommand('ALTER TABLE {{%newcolumns}} ADD COLUMN new_column_x varchar(10) NOT NULL DEFAULT \'ONE\'')->execute();
1112
$this->dropColumn('{{%newcolumns}}', 'delete_col');
1213
}
1314

1415
public function down()
1516
{
1617
$this->addColumn('{{%newcolumns}}', 'delete_col', 'enum("FOUR", "FIVE", "SIX") NULL DEFAULT NULL');
18+
$this->dropColumn('{{%newcolumns}}', 'new_column_x');
1719
$this->dropColumn('{{%newcolumns}}', 'new_column');
1820
}
1921
}

tests/specs/enum/new_column/mysql/app/migrations_mysql_db/m200000_000001_change_table_newcolumns.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@ class m200000_000001_change_table_newcolumns extends \yii\db\Migration
77
{
88
public function up()
99
{
10-
$this->addColumn('{{%newcolumns}}', 'new_column', 'enum("ONE", "TWO", "THREE") NOT NULL DEFAULT \'ONE\'');
10+
$this->addColumn('{{%newcolumns}}', 'new_column', 'enum("ONE", "TWO", "THREE") NOT NULL DEFAULT \'ONE\' AFTER id');
11+
$this->db->createCommand('ALTER TABLE {{%newcolumns}} ADD COLUMN new_column_x varchar(10) NOT NULL DEFAULT \'ONE\'')->execute();
1112
$this->dropColumn('{{%newcolumns}}', 'delete_col');
1213
}
1314

1415
public function down()
1516
{
1617
$this->addColumn('{{%newcolumns}}', 'delete_col', 'enum("FOUR", "FIVE", "SIX") NULL DEFAULT NULL');
18+
$this->dropColumn('{{%newcolumns}}', 'new_column_x');
1719
$this->dropColumn('{{%newcolumns}}', 'new_column');
1820
}
1921
}

tests/specs/enum/new_column/pgsql/app/migrations_pgsql_db/m200000_000001_change_table_newcolumns.php

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ public function safeUp()
99
{
1010
$this->execute('CREATE TYPE "enum_itt_newcolumns_new_column" AS ENUM(\'ONE\', \'TWO\', \'THREE\')');
1111
$this->addColumn('{{%newcolumns}}', 'new_column', '"enum_itt_newcolumns_new_column" NOT NULL DEFAULT \'ONE\'');
12+
$this->db->createCommand('ALTER TABLE {{%newcolumns}} ADD COLUMN new_column_x varchar(10) NOT NULL DEFAULT \'ONE\' AFTER id')->execute();
1213
$this->dropColumn('{{%newcolumns}}', 'delete_col');
1314
$this->execute('DROP TYPE "enum_itt_newcolumns_delete_col"');
1415
}
@@ -17,6 +18,7 @@ public function safeDown()
1718
{
1819
$this->execute('CREATE TYPE "enum_itt_newcolumns_delete_col" AS ENUM(\'FOUR\', \'FIVE\', \'SIX\')');
1920
$this->addColumn('{{%newcolumns}}', 'delete_col', '"enum_itt_newcolumns_delete_col" NULL DEFAULT NULL');
21+
$this->dropColumn('{{%newcolumns}}', 'new_column_x');
2022
$this->dropColumn('{{%newcolumns}}', 'new_column');
2123
$this->execute('DROP TYPE "enum_itt_newcolumns_new_column"');
2224
}

tests/specs/postgres_custom.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,13 @@ components:
7070
enum:
7171
- active
7272
- draft
73+
status_x:
74+
type: string
75+
default: draft
76+
enum:
77+
- active
78+
- draft
79+
x-db-type: varchar(10)
7380
search:
7481
type: string
7582
x-db-type: tsvector

tests/specs/postgres_custom/migrations_pgsql_db/m200000_000000_change_table_v3_pgcustom.php

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ public function safeUp()
1616
$this->alterColumn('{{%v3_pgcustom}}', 'json4', "SET NOT NULL");
1717
$this->alterColumn('{{%v3_pgcustom}}', 'json4', "SET DEFAULT '{\"foo\":\"bar\",\"bar\":\"baz\"}'");
1818
$this->alterColumn('{{%v3_pgcustom}}', 'status', "SET DEFAULT 'draft'");
19+
$this->alterColumn('{{%v3_pgcustom}}', 'status_x', "SET DEFAULT 'draft'");
1920
$this->createIndex('v3_pgcustom_search_gin_index', '{{%v3_pgcustom}}', 'search', 'gin(to_tsvector(\'english\', status))');
2021
}
2122

@@ -31,5 +32,6 @@ public function safeDown()
3132
$this->alterColumn('{{%v3_pgcustom}}', 'json4', "DROP NOT NULL");
3233
$this->alterColumn('{{%v3_pgcustom}}', 'json4', "SET DEFAULT '{\"ffo\":\"bar\"}'");
3334
$this->alterColumn('{{%v3_pgcustom}}', 'status', "DROP DEFAULT");
35+
$this->alterColumn('{{%v3_pgcustom}}', 'status_x', "DROP DEFAULT");
3436
}
3537
}

tests/specs/postgres_custom/models/CustomFaker.php

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ public function generateModel($attributes = [])
3636
$model->json3 = [];
3737
$model->json4 = [];
3838
$model->status = $faker->randomElement(['active','draft']);
39+
$model->status_x = $faker->randomElement(['active','draft']);
3940
if (!is_callable($attributes)) {
4041
$model->setAttributes($attributes, false);
4142
} else {

tests/specs/postgres_custom/models/base/Custom.php

+8-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
* @property array $json3
1313
* @property array $json4
1414
* @property string $status
15+
* @property string $status_x
1516
* @property string $search
1617
*
1718
*/
@@ -25,7 +26,7 @@ public static function tableName()
2526
public function rules()
2627
{
2728
return [
28-
'trim' => [['status'], 'trim'],
29+
'trim' => [['status', 'status_x'], 'trim'],
2930
'num_integer' => [['num'], 'integer'],
3031
'num_default' => [['num'], 'default', 'value' => 0],
3132
'json1_default' => [['json1'], 'default', 'value' => []],
@@ -48,6 +49,12 @@ public function rules()
4849
'draft',
4950
]],
5051
'status_default' => [['status'], 'default', 'value' => 'draft'],
52+
'status_x_string' => [['status_x'], 'string', 'max' => 10],
53+
'status_x_in' => [['status_x'], 'in', 'range' => [
54+
'active',
55+
'draft',
56+
]],
57+
'status_x_default' => [['status_x'], 'default', 'value' => 'draft'],
5158
'safe' => [['json1', 'json2', 'json3', 'json4'], 'safe'],
5259
];
5360
}

0 commit comments

Comments
 (0)