drizzle-kit 0.20.17-940f46c → 0.20.17-9d75ea5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin.cjs +24220 -14294
- package/cli/commands/migrate.d.ts +2 -2
- package/cli/commands/pgIntrospect.d.ts +1 -1
- package/cli/commands/utils.d.ts +2 -2
- package/cli/validations/cli.d.ts +24 -24
- package/cli/validations/common.d.ts +13 -13
- package/cli/validations/outputs.d.ts +1 -2
- package/index.d.mts +2 -48
- package/index.d.ts +2 -48
- package/package.json +2 -1
- package/payload.js +72 -56
- package/payload.mjs +72 -56
- package/schemaValidator.d.ts +7 -7
- package/serializer/pgSchema.d.ts +14 -14
- package/serializer/studio.d.ts +1 -1
- package/snapshotsDiffer.d.ts +1 -2
- package/utils-studio.js +8 -8
- package/utils-studio.mjs +8 -8
- package/utils.js +5 -5
- package/utils.mjs +5 -5
package/payload.mjs
CHANGED
|
@@ -4701,7 +4701,7 @@ var init_pgSchema = __esm({
|
|
|
4701
4701
|
}).strict();
|
|
4702
4702
|
pgSchemaInternal = objectType({
|
|
4703
4703
|
version: literalType("6"),
|
|
4704
|
-
dialect: literalType("
|
|
4704
|
+
dialect: literalType("postgresql"),
|
|
4705
4705
|
tables: recordType(stringType(), table2),
|
|
4706
4706
|
enums: recordType(stringType(), enumSchema),
|
|
4707
4707
|
schemas: recordType(stringType(), stringType()),
|
|
@@ -4730,14 +4730,14 @@ var init_pgSchema = __esm({
|
|
|
4730
4730
|
}).strict();
|
|
4731
4731
|
pgSchemaSquashedV4 = objectType({
|
|
4732
4732
|
version: literalType("4"),
|
|
4733
|
-
dialect:
|
|
4733
|
+
dialect: literalType("pg"),
|
|
4734
4734
|
tables: recordType(stringType(), tableSquashedV42),
|
|
4735
4735
|
enums: recordType(stringType(), enumSchemaV1),
|
|
4736
4736
|
schemas: recordType(stringType(), stringType())
|
|
4737
4737
|
}).strict();
|
|
4738
4738
|
pgSchemaSquashed = objectType({
|
|
4739
4739
|
version: literalType("6"),
|
|
4740
|
-
dialect:
|
|
4740
|
+
dialect: literalType("postgresql"),
|
|
4741
4741
|
tables: recordType(stringType(), tableSquashed2),
|
|
4742
4742
|
enums: recordType(stringType(), enumSchema),
|
|
4743
4743
|
schemas: recordType(stringType(), stringType())
|
|
@@ -4848,7 +4848,7 @@ var init_pgSchema = __esm({
|
|
|
4848
4848
|
};
|
|
4849
4849
|
dryPg = pgSchema.parse({
|
|
4850
4850
|
version: snapshotVersion,
|
|
4851
|
-
dialect: "
|
|
4851
|
+
dialect: "postgresql",
|
|
4852
4852
|
id: originUUID,
|
|
4853
4853
|
prevId: "",
|
|
4854
4854
|
tables: {},
|
|
@@ -5311,7 +5311,8 @@ var init_outputs = __esm({
|
|
|
5311
5311
|
warning: (str) => `${source_default.white.bgGray(" Warning ")} ${str}`,
|
|
5312
5312
|
errorWarning: (str) => `${source_default.red(`${source_default.white.bgRed(" Warning ")} ${str}`)}`,
|
|
5313
5313
|
fullWarning: (str) => `${source_default.black.bgYellow("[Warning]")} ${source_default.bold(str)}`,
|
|
5314
|
-
suggestion: (str) => `${source_default.white.bgGray(" Suggestion ")} ${str}
|
|
5314
|
+
suggestion: (str) => `${source_default.white.bgGray(" Suggestion ")} ${str}`,
|
|
5315
|
+
info: (str) => `${source_default.grey(str)}`
|
|
5315
5316
|
};
|
|
5316
5317
|
}
|
|
5317
5318
|
});
|
|
@@ -5333,7 +5334,6 @@ var init_mysql = __esm({
|
|
|
5333
5334
|
}),
|
|
5334
5335
|
objectType({
|
|
5335
5336
|
url: stringType()
|
|
5336
|
-
// TODO: change docs
|
|
5337
5337
|
})
|
|
5338
5338
|
]);
|
|
5339
5339
|
}
|
|
@@ -5397,7 +5397,7 @@ var init_schemaValidator = __esm({
|
|
|
5397
5397
|
init_mysqlSchema();
|
|
5398
5398
|
init_pgSchema();
|
|
5399
5399
|
init_sqliteSchema();
|
|
5400
|
-
dialect3 = enumType(["
|
|
5400
|
+
dialect3 = enumType(["postgresql", "mysql", "sqlite"]);
|
|
5401
5401
|
commonSquashedSchema = unionType([
|
|
5402
5402
|
pgSchemaSquashed,
|
|
5403
5403
|
mysqlSchemaSquashed,
|
|
@@ -5517,8 +5517,8 @@ var init_cli = __esm({
|
|
|
5517
5517
|
dialect: dialect3,
|
|
5518
5518
|
schema: unionType([stringType(), stringType().array()]).optional(),
|
|
5519
5519
|
tablesFilter: unionType([stringType(), stringType().array()]).optional(),
|
|
5520
|
-
|
|
5521
|
-
driver: stringType(),
|
|
5520
|
+
schemaFilter: unionType([stringType(), stringType().array()]).optional().default(["public"]),
|
|
5521
|
+
driver: stringType().optional(),
|
|
5522
5522
|
// pg
|
|
5523
5523
|
connectionString: stringType().optional(),
|
|
5524
5524
|
// mysql
|
|
@@ -5554,7 +5554,7 @@ var init_cli = __esm({
|
|
|
5554
5554
|
ssl: stringType().optional(),
|
|
5555
5555
|
url: stringType().optional(),
|
|
5556
5556
|
authToken: stringType().optional(),
|
|
5557
|
-
|
|
5557
|
+
introspectCasing: casing,
|
|
5558
5558
|
breakpoints: booleanType().optional().default(true)
|
|
5559
5559
|
});
|
|
5560
5560
|
configCheck = objectType({
|
|
@@ -11516,7 +11516,7 @@ ${withStyle.errorWarning(
|
|
|
11516
11516
|
);
|
|
11517
11517
|
return {
|
|
11518
11518
|
version: "6",
|
|
11519
|
-
dialect: "
|
|
11519
|
+
dialect: "postgresql",
|
|
11520
11520
|
tables: result,
|
|
11521
11521
|
enums: enumsToReturn,
|
|
11522
11522
|
schemas: schemasObject,
|
|
@@ -11723,7 +11723,7 @@ ${withStyle.errorWarning(
|
|
|
11723
11723
|
const columnName = columnResponse.attname;
|
|
11724
11724
|
const columnAdditionalDT = columnResponse.additional_dt;
|
|
11725
11725
|
const columnDimensions = columnResponse.array_dimensions;
|
|
11726
|
-
const
|
|
11726
|
+
const enumType3 = columnResponse.enum_name;
|
|
11727
11727
|
let columnType = columnResponse.data_type;
|
|
11728
11728
|
const primaryKey = tableConstraints.filter(
|
|
11729
11729
|
(mapRow) => columnName === mapRow.column_name && mapRow.constraint_type === "PRIMARY KEY"
|
|
@@ -11787,8 +11787,8 @@ ${withStyle.errorWarning(
|
|
|
11787
11787
|
columnTypeMapped = trimChar(columnTypeMapped, '"');
|
|
11788
11788
|
columnToReturn[columnName] = {
|
|
11789
11789
|
name: columnName,
|
|
11790
|
-
type: columnAdditionalDT === "USER-DEFINED" ?
|
|
11791
|
-
typeSchema: enumsToReturn[`${tableSchema}.${
|
|
11790
|
+
type: columnAdditionalDT === "USER-DEFINED" ? enumType3 : columnTypeMapped,
|
|
11791
|
+
typeSchema: enumsToReturn[`${tableSchema}.${enumType3}`] !== void 0 ? enumsToReturn[`${tableSchema}.${enumType3}`].schema : void 0,
|
|
11792
11792
|
primaryKey: primaryKey.length === 1 && cprimaryKey.length < 2,
|
|
11793
11793
|
// default: isSerial ? undefined : defaultValue,
|
|
11794
11794
|
notNull: columnResponse.is_nullable === "NO"
|
|
@@ -11871,7 +11871,7 @@ ${withStyle.errorWarning(
|
|
|
11871
11871
|
const schemasObject = Object.fromEntries([...schemas].map((it) => [it, it]));
|
|
11872
11872
|
return {
|
|
11873
11873
|
version: "6",
|
|
11874
|
-
dialect: "
|
|
11874
|
+
dialect: "postgresql",
|
|
11875
11875
|
tables: result,
|
|
11876
11876
|
enums: enumsToReturn,
|
|
11877
11877
|
schemas: schemasObject,
|
|
@@ -15102,7 +15102,7 @@ var init_snapshotsDiffer = __esm({
|
|
|
15102
15102
|
const jsonTableAlternations = alteredTables.map((it) => {
|
|
15103
15103
|
return preparePgAlterColumns(it.name, it.schema, it.altered, json2);
|
|
15104
15104
|
}).flat();
|
|
15105
|
-
const
|
|
15105
|
+
const jsonCreateIndexesFoAlteredTables = alteredTables.map((it) => {
|
|
15106
15106
|
return prepareCreateIndexesJson(
|
|
15107
15107
|
it.name,
|
|
15108
15108
|
it.schema,
|
|
@@ -15131,14 +15131,21 @@ var init_snapshotsDiffer = __esm({
|
|
|
15131
15131
|
},
|
|
15132
15132
|
{}
|
|
15133
15133
|
);
|
|
15134
|
-
|
|
15134
|
+
jsonCreateIndexesFoAlteredTables.push(
|
|
15135
15135
|
...prepareCreateIndexesJson(it.name, it.schema, createdIndexes || {})
|
|
15136
15136
|
);
|
|
15137
15137
|
jsonDropIndexesForAllAlteredTables.push(
|
|
15138
15138
|
...prepareDropIndexesJson(it.name, it.schema, droppedIndexes || {})
|
|
15139
15139
|
);
|
|
15140
15140
|
});
|
|
15141
|
-
const
|
|
15141
|
+
const jsonCreateReferencesForCreatedTables = createdTables.map((it) => {
|
|
15142
|
+
return prepareCreateReferencesJson(
|
|
15143
|
+
it.name,
|
|
15144
|
+
it.schema,
|
|
15145
|
+
it.foreignKeys
|
|
15146
|
+
);
|
|
15147
|
+
}).flat();
|
|
15148
|
+
const jsonReferencesForAlteredTables = alteredTables.map((it) => {
|
|
15142
15149
|
const forAdded = prepareCreateReferencesJson(
|
|
15143
15150
|
it.name,
|
|
15144
15151
|
it.schema,
|
|
@@ -15156,10 +15163,10 @@ var init_snapshotsDiffer = __esm({
|
|
|
15156
15163
|
);
|
|
15157
15164
|
return [...forAdded, ...forAltered, ...alteredFKs];
|
|
15158
15165
|
}).flat();
|
|
15159
|
-
const jsonCreatedReferencesForAlteredTables =
|
|
15166
|
+
const jsonCreatedReferencesForAlteredTables = jsonReferencesForAlteredTables.filter(
|
|
15160
15167
|
(t) => t.type === "create_reference"
|
|
15161
15168
|
);
|
|
15162
|
-
const jsonDroppedReferencesForAlteredTables =
|
|
15169
|
+
const jsonDroppedReferencesForAlteredTables = jsonReferencesForAlteredTables.filter(
|
|
15163
15170
|
(t) => t.type === "delete_reference"
|
|
15164
15171
|
);
|
|
15165
15172
|
const createEnums = createdEnums.map((it) => {
|
|
@@ -15186,7 +15193,7 @@ var init_snapshotsDiffer = __esm({
|
|
|
15186
15193
|
const dropSchemas = prepareDeleteSchemasJson(
|
|
15187
15194
|
deletedSchemas.map((it) => it.name)
|
|
15188
15195
|
);
|
|
15189
|
-
const
|
|
15196
|
+
const createTables = createdTables.map((it) => {
|
|
15190
15197
|
return preparePgCreateTableJson(it, curFull);
|
|
15191
15198
|
});
|
|
15192
15199
|
jsonStatements.push(...createSchemas);
|
|
@@ -15195,7 +15202,7 @@ var init_snapshotsDiffer = __esm({
|
|
|
15195
15202
|
jsonStatements.push(...moveEnums);
|
|
15196
15203
|
jsonStatements.push(...renameEnums);
|
|
15197
15204
|
jsonStatements.push(...jsonAlterEnumsWithAddedValues);
|
|
15198
|
-
jsonStatements.push(...
|
|
15205
|
+
jsonStatements.push(...createTables);
|
|
15199
15206
|
jsonStatements.push(...jsonDropTables);
|
|
15200
15207
|
jsonStatements.push(...jsonSetTableSchemas);
|
|
15201
15208
|
jsonStatements.push(...jsonRenameTables);
|
|
@@ -15206,15 +15213,16 @@ var init_snapshotsDiffer = __esm({
|
|
|
15206
15213
|
jsonStatements.push(...jsonTableAlternations);
|
|
15207
15214
|
jsonStatements.push(...jsonAddedCompositePKs);
|
|
15208
15215
|
jsonStatements.push(...jsonAddColumnsStatemets);
|
|
15216
|
+
jsonStatements.push(...jsonCreateReferencesForCreatedTables);
|
|
15209
15217
|
jsonStatements.push(...jsonCreateIndexesForCreatedTables);
|
|
15210
|
-
jsonStatements.push(...jsonCreateIndexesForAllAlteredTables);
|
|
15211
15218
|
jsonStatements.push(...jsonCreatedReferencesForAlteredTables);
|
|
15219
|
+
jsonStatements.push(...jsonCreateIndexesFoAlteredTables);
|
|
15212
15220
|
jsonStatements.push(...jsonDropColumnsStatemets);
|
|
15213
15221
|
jsonStatements.push(...jsonAlteredCompositePKs);
|
|
15214
15222
|
jsonStatements.push(...jsonAlteredUniqueConstraints);
|
|
15215
15223
|
jsonStatements.push(...dropEnums);
|
|
15216
15224
|
jsonStatements.push(...dropSchemas);
|
|
15217
|
-
const sqlStatements = fromJson(jsonStatements, "
|
|
15225
|
+
const sqlStatements = fromJson(jsonStatements, "postgresql");
|
|
15218
15226
|
const uniqueSqlStatements = [];
|
|
15219
15227
|
sqlStatements.forEach((ss) => {
|
|
15220
15228
|
if (!uniqueSqlStatements.includes(ss)) {
|
|
@@ -15352,8 +15360,8 @@ var init_snapshotsDiffer = __esm({
|
|
|
15352
15360
|
const jsonDeletedUniqueConstraints = [];
|
|
15353
15361
|
const jsonAlteredUniqueConstraints = [];
|
|
15354
15362
|
const jsonRenameColumnsStatements = columnRenames.map((it) => prepareRenameColumns(it.table, "", it.renames)).flat();
|
|
15363
|
+
const jsonAddColumnsStatemets = columnCreates.map((it) => _prepareAddColumns(it.table, "", it.columns)).flat();
|
|
15355
15364
|
const jsonDropColumnsStatemets = columnDeletes.map((it) => _prepareDropColumns(it.table, "", it.columns)).flat();
|
|
15356
|
-
const jsonAddColumnsStatemets = columnDeletes.map((it) => _prepareAddColumns(it.table, "", it.columns)).flat();
|
|
15357
15365
|
alteredTables.forEach((it) => {
|
|
15358
15366
|
let addedColumns = [];
|
|
15359
15367
|
for (const addedPkName of Object.keys(it.addedCompositePKs)) {
|
|
@@ -15467,6 +15475,13 @@ var init_snapshotsDiffer = __esm({
|
|
|
15467
15475
|
...prepareDropIndexesJson(it.name, it.schema, droppedIndexes || {})
|
|
15468
15476
|
);
|
|
15469
15477
|
});
|
|
15478
|
+
const jsonCreateReferencesForCreatedTables = createdTables.map((it) => {
|
|
15479
|
+
return prepareCreateReferencesJson(
|
|
15480
|
+
it.name,
|
|
15481
|
+
it.schema,
|
|
15482
|
+
it.foreignKeys
|
|
15483
|
+
);
|
|
15484
|
+
}).flat();
|
|
15470
15485
|
const jsonReferencesForAllAlteredTables = alteredTables.map((it) => {
|
|
15471
15486
|
const forAdded = prepareCreateReferencesJson(
|
|
15472
15487
|
it.name,
|
|
@@ -15507,9 +15522,10 @@ var init_snapshotsDiffer = __esm({
|
|
|
15507
15522
|
jsonStatements.push(...jsonAddedUniqueConstraints);
|
|
15508
15523
|
jsonStatements.push(...jsonDeletedUniqueConstraints);
|
|
15509
15524
|
jsonStatements.push(...jsonAddColumnsStatemets);
|
|
15525
|
+
jsonStatements.push(...jsonCreateReferencesForCreatedTables);
|
|
15510
15526
|
jsonStatements.push(...jsonCreateIndexesForCreatedTables);
|
|
15511
|
-
jsonStatements.push(...jsonCreateIndexesForAllAlteredTables);
|
|
15512
15527
|
jsonStatements.push(...jsonCreatedReferencesForAlteredTables);
|
|
15528
|
+
jsonStatements.push(...jsonCreateIndexesForAllAlteredTables);
|
|
15513
15529
|
jsonStatements.push(...jsonDropColumnsStatemets);
|
|
15514
15530
|
jsonStatements.push(...jsonAlteredCompositePKs);
|
|
15515
15531
|
jsonStatements.push(...jsonAddedUniqueConstraints);
|
|
@@ -16094,7 +16110,7 @@ var init_sqlgenerator = __esm({
|
|
|
16094
16110
|
};
|
|
16095
16111
|
PgCreateTableConvertor = class extends Convertor {
|
|
16096
16112
|
can(statement, dialect7) {
|
|
16097
|
-
return statement.type === "create_table" && dialect7 === "
|
|
16113
|
+
return statement.type === "create_table" && dialect7 === "postgresql";
|
|
16098
16114
|
}
|
|
16099
16115
|
convert(st) {
|
|
16100
16116
|
const { tableName, schema: schema4, columns, compositePKs, uniqueConstraints } = st;
|
|
@@ -16236,7 +16252,7 @@ var init_sqlgenerator = __esm({
|
|
|
16236
16252
|
};
|
|
16237
16253
|
PgAlterTableAddUniqueConstraintConvertor = class extends Convertor {
|
|
16238
16254
|
can(statement, dialect7) {
|
|
16239
|
-
return statement.type === "create_unique_constraint" && dialect7 === "
|
|
16255
|
+
return statement.type === "create_unique_constraint" && dialect7 === "postgresql";
|
|
16240
16256
|
}
|
|
16241
16257
|
convert(statement) {
|
|
16242
16258
|
const unsquashed = PgSquasher.unsquashUnique(statement.data);
|
|
@@ -16246,7 +16262,7 @@ var init_sqlgenerator = __esm({
|
|
|
16246
16262
|
};
|
|
16247
16263
|
PgAlterTableDropUniqueConstraintConvertor = class extends Convertor {
|
|
16248
16264
|
can(statement, dialect7) {
|
|
16249
|
-
return statement.type === "delete_unique_constraint" && dialect7 === "
|
|
16265
|
+
return statement.type === "delete_unique_constraint" && dialect7 === "postgresql";
|
|
16250
16266
|
}
|
|
16251
16267
|
convert(statement) {
|
|
16252
16268
|
const unsquashed = PgSquasher.unsquashUnique(statement.data);
|
|
@@ -16335,7 +16351,7 @@ var init_sqlgenerator = __esm({
|
|
|
16335
16351
|
};
|
|
16336
16352
|
PgDropTableConvertor = class extends Convertor {
|
|
16337
16353
|
can(statement, dialect7) {
|
|
16338
|
-
return statement.type === "drop_table" && dialect7 === "
|
|
16354
|
+
return statement.type === "drop_table" && dialect7 === "postgresql";
|
|
16339
16355
|
}
|
|
16340
16356
|
convert(statement) {
|
|
16341
16357
|
const { tableName, schema: schema4 } = statement;
|
|
@@ -16363,7 +16379,7 @@ var init_sqlgenerator = __esm({
|
|
|
16363
16379
|
};
|
|
16364
16380
|
PgRenameTableConvertor = class extends Convertor {
|
|
16365
16381
|
can(statement, dialect7) {
|
|
16366
|
-
return statement.type === "rename_table" && dialect7 === "
|
|
16382
|
+
return statement.type === "rename_table" && dialect7 === "postgresql";
|
|
16367
16383
|
}
|
|
16368
16384
|
convert(statement) {
|
|
16369
16385
|
const { tableNameFrom, tableNameTo, toSchema, fromSchema } = statement;
|
|
@@ -16394,7 +16410,7 @@ var init_sqlgenerator = __esm({
|
|
|
16394
16410
|
};
|
|
16395
16411
|
PgAlterTableRenameColumnConvertor = class extends Convertor {
|
|
16396
16412
|
can(statement, dialect7) {
|
|
16397
|
-
return statement.type === "alter_table_rename_column" && dialect7 === "
|
|
16413
|
+
return statement.type === "alter_table_rename_column" && dialect7 === "postgresql";
|
|
16398
16414
|
}
|
|
16399
16415
|
convert(statement) {
|
|
16400
16416
|
const { tableName, oldColumnName, newColumnName, schema: schema4 } = statement;
|
|
@@ -16422,7 +16438,7 @@ var init_sqlgenerator = __esm({
|
|
|
16422
16438
|
};
|
|
16423
16439
|
PgAlterTableDropColumnConvertor = class extends Convertor {
|
|
16424
16440
|
can(statement, dialect7) {
|
|
16425
|
-
return statement.type === "alter_table_drop_column" && dialect7 === "
|
|
16441
|
+
return statement.type === "alter_table_drop_column" && dialect7 === "postgresql";
|
|
16426
16442
|
}
|
|
16427
16443
|
convert(statement) {
|
|
16428
16444
|
const { tableName, columnName, schema: schema4 } = statement;
|
|
@@ -16450,7 +16466,7 @@ var init_sqlgenerator = __esm({
|
|
|
16450
16466
|
};
|
|
16451
16467
|
PgAlterTableAddColumnConvertor = class extends Convertor {
|
|
16452
16468
|
can(statement, dialect7) {
|
|
16453
|
-
return statement.type === "alter_table_add_column" && dialect7 === "
|
|
16469
|
+
return statement.type === "alter_table_add_column" && dialect7 === "postgresql";
|
|
16454
16470
|
}
|
|
16455
16471
|
convert(statement) {
|
|
16456
16472
|
const { tableName, column: column4, schema: schema4 } = statement;
|
|
@@ -16495,7 +16511,7 @@ var init_sqlgenerator = __esm({
|
|
|
16495
16511
|
};
|
|
16496
16512
|
PgAlterTableAlterColumnSetTypeConvertor = class extends Convertor {
|
|
16497
16513
|
can(statement, dialect7) {
|
|
16498
|
-
return statement.type === "alter_table_alter_column_set_type" && dialect7 === "
|
|
16514
|
+
return statement.type === "alter_table_alter_column_set_type" && dialect7 === "postgresql";
|
|
16499
16515
|
}
|
|
16500
16516
|
convert(statement) {
|
|
16501
16517
|
const { tableName, columnName, newDataType, schema: schema4 } = statement;
|
|
@@ -16520,7 +16536,7 @@ var init_sqlgenerator = __esm({
|
|
|
16520
16536
|
};
|
|
16521
16537
|
PgAlterTableAlterColumnSetDefaultConvertor = class extends Convertor {
|
|
16522
16538
|
can(statement, dialect7) {
|
|
16523
|
-
return statement.type === "alter_table_alter_column_set_default" && dialect7 === "
|
|
16539
|
+
return statement.type === "alter_table_alter_column_set_default" && dialect7 === "postgresql";
|
|
16524
16540
|
}
|
|
16525
16541
|
convert(statement) {
|
|
16526
16542
|
const { tableName, columnName, schema: schema4 } = statement;
|
|
@@ -16545,7 +16561,7 @@ var init_sqlgenerator = __esm({
|
|
|
16545
16561
|
};
|
|
16546
16562
|
PgAlterTableAlterColumnDropDefaultConvertor = class extends Convertor {
|
|
16547
16563
|
can(statement, dialect7) {
|
|
16548
|
-
return statement.type === "alter_table_alter_column_drop_default" && dialect7 === "
|
|
16564
|
+
return statement.type === "alter_table_alter_column_drop_default" && dialect7 === "postgresql";
|
|
16549
16565
|
}
|
|
16550
16566
|
convert(statement) {
|
|
16551
16567
|
const { tableName, columnName, schema: schema4 } = statement;
|
|
@@ -16657,7 +16673,7 @@ var init_sqlgenerator = __esm({
|
|
|
16657
16673
|
};
|
|
16658
16674
|
PgAlterTableCreateCompositePrimaryKeyConvertor = class extends Convertor {
|
|
16659
16675
|
can(statement, dialect7) {
|
|
16660
|
-
return statement.type === "create_composite_pk" && dialect7 === "
|
|
16676
|
+
return statement.type === "create_composite_pk" && dialect7 === "postgresql";
|
|
16661
16677
|
}
|
|
16662
16678
|
convert(statement) {
|
|
16663
16679
|
const { name, columns } = PgSquasher.unsquashPK(statement.data);
|
|
@@ -16667,7 +16683,7 @@ var init_sqlgenerator = __esm({
|
|
|
16667
16683
|
};
|
|
16668
16684
|
PgAlterTableDeleteCompositePrimaryKeyConvertor = class extends Convertor {
|
|
16669
16685
|
can(statement, dialect7) {
|
|
16670
|
-
return statement.type === "delete_composite_pk" && dialect7 === "
|
|
16686
|
+
return statement.type === "delete_composite_pk" && dialect7 === "postgresql";
|
|
16671
16687
|
}
|
|
16672
16688
|
convert(statement) {
|
|
16673
16689
|
const { name, columns } = PgSquasher.unsquashPK(statement.data);
|
|
@@ -16677,7 +16693,7 @@ var init_sqlgenerator = __esm({
|
|
|
16677
16693
|
};
|
|
16678
16694
|
PgAlterTableAlterCompositePrimaryKeyConvertor = class extends Convertor {
|
|
16679
16695
|
can(statement, dialect7) {
|
|
16680
|
-
return statement.type === "alter_composite_pk" && dialect7 === "
|
|
16696
|
+
return statement.type === "alter_composite_pk" && dialect7 === "postgresql";
|
|
16681
16697
|
}
|
|
16682
16698
|
convert(statement) {
|
|
16683
16699
|
const { name, columns } = PgSquasher.unsquashPK(statement.old);
|
|
@@ -16800,7 +16816,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
|
|
|
16800
16816
|
};
|
|
16801
16817
|
PgAlterTableAlterColumnSetPrimaryKeyConvertor = class extends Convertor {
|
|
16802
16818
|
can(statement, dialect7) {
|
|
16803
|
-
return statement.type === "alter_table_alter_column_set_pk" && dialect7 === "
|
|
16819
|
+
return statement.type === "alter_table_alter_column_set_pk" && dialect7 === "postgresql";
|
|
16804
16820
|
}
|
|
16805
16821
|
convert(statement) {
|
|
16806
16822
|
const { tableName, columnName } = statement;
|
|
@@ -16810,7 +16826,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
|
|
|
16810
16826
|
};
|
|
16811
16827
|
PgAlterTableAlterColumnDropPrimaryKeyConvertor = class extends Convertor {
|
|
16812
16828
|
can(statement, dialect7) {
|
|
16813
|
-
return statement.type === "alter_table_alter_column_drop_pk" && dialect7 === "
|
|
16829
|
+
return statement.type === "alter_table_alter_column_drop_pk" && dialect7 === "postgresql";
|
|
16814
16830
|
}
|
|
16815
16831
|
convert(statement) {
|
|
16816
16832
|
const { tableName, columnName, schema: schema4 } = statement;
|
|
@@ -16834,7 +16850,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
|
|
|
16834
16850
|
};
|
|
16835
16851
|
PgAlterTableAlterColumnSetNotNullConvertor = class extends Convertor {
|
|
16836
16852
|
can(statement, dialect7) {
|
|
16837
|
-
return statement.type === "alter_table_alter_column_set_notnull" && dialect7 === "
|
|
16853
|
+
return statement.type === "alter_table_alter_column_set_notnull" && dialect7 === "postgresql";
|
|
16838
16854
|
}
|
|
16839
16855
|
convert(statement) {
|
|
16840
16856
|
const { tableName, columnName } = statement;
|
|
@@ -16889,7 +16905,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
|
|
|
16889
16905
|
};
|
|
16890
16906
|
PgAlterTableAlterColumnDropNotNullConvertor = class extends Convertor {
|
|
16891
16907
|
can(statement, dialect7) {
|
|
16892
|
-
return statement.type === "alter_table_alter_column_drop_notnull" && dialect7 === "
|
|
16908
|
+
return statement.type === "alter_table_alter_column_drop_notnull" && dialect7 === "postgresql";
|
|
16893
16909
|
}
|
|
16894
16910
|
convert(statement) {
|
|
16895
16911
|
const { tableName, columnName } = statement;
|
|
@@ -16914,7 +16930,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
|
|
|
16914
16930
|
};
|
|
16915
16931
|
PgCreateForeignKeyConvertor = class extends Convertor {
|
|
16916
16932
|
can(statement, dialect7) {
|
|
16917
|
-
return statement.type === "create_reference" && dialect7 === "
|
|
16933
|
+
return statement.type === "create_reference" && dialect7 === "postgresql";
|
|
16918
16934
|
}
|
|
16919
16935
|
convert(statement) {
|
|
16920
16936
|
const {
|
|
@@ -16979,7 +16995,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
|
|
|
16979
16995
|
};
|
|
16980
16996
|
PgAlterForeignKeyConvertor = class extends Convertor {
|
|
16981
16997
|
can(statement, dialect7) {
|
|
16982
|
-
return statement.type === "alter_reference" && dialect7 === "
|
|
16998
|
+
return statement.type === "alter_reference" && dialect7 === "postgresql";
|
|
16983
16999
|
}
|
|
16984
17000
|
convert(statement) {
|
|
16985
17001
|
const newFk = PgSquasher.unsquashFK(statement.data);
|
|
@@ -17018,7 +17034,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
|
|
|
17018
17034
|
};
|
|
17019
17035
|
PgDeleteForeignKeyConvertor = class extends Convertor {
|
|
17020
17036
|
can(statement, dialect7) {
|
|
17021
|
-
return statement.type === "delete_reference" && dialect7 === "
|
|
17037
|
+
return statement.type === "delete_reference" && dialect7 === "postgresql";
|
|
17022
17038
|
}
|
|
17023
17039
|
convert(statement) {
|
|
17024
17040
|
const tableFrom = statement.tableName;
|
|
@@ -17055,7 +17071,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
|
|
|
17055
17071
|
};
|
|
17056
17072
|
CreatePgIndexConvertor = class extends Convertor {
|
|
17057
17073
|
can(statement, dialect7) {
|
|
17058
|
-
return statement.type === "create_index" && dialect7 === "
|
|
17074
|
+
return statement.type === "create_index" && dialect7 === "postgresql";
|
|
17059
17075
|
}
|
|
17060
17076
|
convert(statement) {
|
|
17061
17077
|
const { name, columns, isUnique } = PgSquasher.unsquashIdx(statement.data);
|
|
@@ -17094,7 +17110,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
|
|
|
17094
17110
|
};
|
|
17095
17111
|
PgDropIndexConvertor = class extends Convertor {
|
|
17096
17112
|
can(statement, dialect7) {
|
|
17097
|
-
return statement.type === "drop_index" && dialect7 === "
|
|
17113
|
+
return statement.type === "drop_index" && dialect7 === "postgresql";
|
|
17098
17114
|
}
|
|
17099
17115
|
convert(statement) {
|
|
17100
17116
|
const { name } = PgSquasher.unsquashIdx(statement.data);
|
|
@@ -17103,7 +17119,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
|
|
|
17103
17119
|
};
|
|
17104
17120
|
PgCreateSchemaConvertor = class extends Convertor {
|
|
17105
17121
|
can(statement, dialect7) {
|
|
17106
|
-
return statement.type === "create_schema" && dialect7 === "
|
|
17122
|
+
return statement.type === "create_schema" && dialect7 === "postgresql";
|
|
17107
17123
|
}
|
|
17108
17124
|
convert(statement) {
|
|
17109
17125
|
const { name } = statement;
|
|
@@ -17113,7 +17129,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
|
|
|
17113
17129
|
};
|
|
17114
17130
|
PgRenameSchemaConvertor = class extends Convertor {
|
|
17115
17131
|
can(statement, dialect7) {
|
|
17116
|
-
return statement.type === "rename_schema" && dialect7 === "
|
|
17132
|
+
return statement.type === "rename_schema" && dialect7 === "postgresql";
|
|
17117
17133
|
}
|
|
17118
17134
|
convert(statement) {
|
|
17119
17135
|
const { from, to } = statement;
|
|
@@ -17123,7 +17139,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
|
|
|
17123
17139
|
};
|
|
17124
17140
|
PgDropSchemaConvertor = class extends Convertor {
|
|
17125
17141
|
can(statement, dialect7) {
|
|
17126
|
-
return statement.type === "drop_schema" && dialect7 === "
|
|
17142
|
+
return statement.type === "drop_schema" && dialect7 === "postgresql";
|
|
17127
17143
|
}
|
|
17128
17144
|
convert(statement) {
|
|
17129
17145
|
const { name } = statement;
|
|
@@ -17133,7 +17149,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
|
|
|
17133
17149
|
};
|
|
17134
17150
|
PgAlterTableSetSchemaConvertor = class extends Convertor {
|
|
17135
17151
|
can(statement, dialect7) {
|
|
17136
|
-
return statement.type === "alter_table_set_schema" && dialect7 === "
|
|
17152
|
+
return statement.type === "alter_table_set_schema" && dialect7 === "postgresql";
|
|
17137
17153
|
}
|
|
17138
17154
|
convert(statement) {
|
|
17139
17155
|
const { tableName, schemaFrom, schemaTo } = statement;
|
|
@@ -17143,7 +17159,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
|
|
|
17143
17159
|
};
|
|
17144
17160
|
PgAlterTableSetNewSchemaConvertor = class extends Convertor {
|
|
17145
17161
|
can(statement, dialect7) {
|
|
17146
|
-
return statement.type === "alter_table_set_new_schema" && dialect7 === "
|
|
17162
|
+
return statement.type === "alter_table_set_new_schema" && dialect7 === "postgresql";
|
|
17147
17163
|
}
|
|
17148
17164
|
convert(statement) {
|
|
17149
17165
|
const { tableName, to, from } = statement;
|
|
@@ -17154,7 +17170,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
|
|
|
17154
17170
|
};
|
|
17155
17171
|
PgAlterTableRemoveFromSchemaConvertor = class extends Convertor {
|
|
17156
17172
|
can(statement, dialect7) {
|
|
17157
|
-
return statement.type === "alter_table_remove_from_schema" && dialect7 === "
|
|
17173
|
+
return statement.type === "alter_table_remove_from_schema" && dialect7 === "postgresql";
|
|
17158
17174
|
}
|
|
17159
17175
|
convert(statement) {
|
|
17160
17176
|
const { tableName, schema: schema4 } = statement;
|
|
@@ -18929,7 +18945,7 @@ var pgSuggestions = async (db, statements) => {
|
|
|
18929
18945
|
}
|
|
18930
18946
|
}
|
|
18931
18947
|
}
|
|
18932
|
-
const stmnt = fromJson([statement], "
|
|
18948
|
+
const stmnt = fromJson([statement], "postgresql")[0];
|
|
18933
18949
|
if (typeof stmnt !== "undefined") {
|
|
18934
18950
|
if (statement.type === "drop_table") {
|
|
18935
18951
|
statementsToExecute.push(
|
package/schemaValidator.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { TypeOf } from "zod";
|
|
2
|
-
export declare const dialect: import("zod").ZodEnum<["
|
|
2
|
+
export declare const dialect: import("zod").ZodEnum<["postgresql", "mysql", "sqlite"]>;
|
|
3
3
|
export type Dialect = TypeOf<typeof dialect>;
|
|
4
4
|
declare const commonSquashedSchema: import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
5
5
|
version: import("zod").ZodLiteral<"6">;
|
|
6
|
-
dialect: import("zod").
|
|
6
|
+
dialect: import("zod").ZodLiteral<"postgresql">;
|
|
7
7
|
tables: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
8
8
|
name: import("zod").ZodString;
|
|
9
9
|
schema: import("zod").ZodString;
|
|
@@ -114,7 +114,7 @@ declare const commonSquashedSchema: import("zod").ZodUnion<[import("zod").ZodObj
|
|
|
114
114
|
uniqueConstraints: Record<string, string>;
|
|
115
115
|
}>;
|
|
116
116
|
version: "6";
|
|
117
|
-
dialect: "
|
|
117
|
+
dialect: "postgresql";
|
|
118
118
|
schemas: Record<string, string>;
|
|
119
119
|
enums: Record<string, {
|
|
120
120
|
name: string;
|
|
@@ -142,7 +142,7 @@ declare const commonSquashedSchema: import("zod").ZodUnion<[import("zod").ZodObj
|
|
|
142
142
|
uniqueConstraints: Record<string, string>;
|
|
143
143
|
}>;
|
|
144
144
|
version: "6";
|
|
145
|
-
dialect: "
|
|
145
|
+
dialect: "postgresql";
|
|
146
146
|
schemas: Record<string, string>;
|
|
147
147
|
enums: Record<string, {
|
|
148
148
|
name: string;
|
|
@@ -354,7 +354,7 @@ declare const commonSquashedSchema: import("zod").ZodUnion<[import("zod").ZodObj
|
|
|
354
354
|
}>]>;
|
|
355
355
|
declare const commonSchema: import("zod").ZodUnion<[import("zod").ZodObject<import("zod").extendShape<{
|
|
356
356
|
version: import("zod").ZodLiteral<"6">;
|
|
357
|
-
dialect: import("zod").ZodLiteral<"
|
|
357
|
+
dialect: import("zod").ZodLiteral<"postgresql">;
|
|
358
358
|
tables: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
359
359
|
name: import("zod").ZodString;
|
|
360
360
|
schema: import("zod").ZodString;
|
|
@@ -657,7 +657,7 @@ declare const commonSchema: import("zod").ZodUnion<[import("zod").ZodObject<impo
|
|
|
657
657
|
id: string;
|
|
658
658
|
prevId: string;
|
|
659
659
|
version: "6";
|
|
660
|
-
dialect: "
|
|
660
|
+
dialect: "postgresql";
|
|
661
661
|
schemas: Record<string, string>;
|
|
662
662
|
_meta: {
|
|
663
663
|
columns: Record<string, string>;
|
|
@@ -721,7 +721,7 @@ declare const commonSchema: import("zod").ZodUnion<[import("zod").ZodObject<impo
|
|
|
721
721
|
id: string;
|
|
722
722
|
prevId: string;
|
|
723
723
|
version: "6";
|
|
724
|
-
dialect: "
|
|
724
|
+
dialect: "postgresql";
|
|
725
725
|
schemas: Record<string, string>;
|
|
726
726
|
_meta: {
|
|
727
727
|
columns: Record<string, string>;
|