drizzle-kit 0.20.17-14a4eaa → 0.20.17-388fa1b

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/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("postgresql"),
4704
+ dialect: literalType("pg"),
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: literalType("pg"),
4733
+ dialect: enumType(["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: literalType("postgresql"),
4740
+ dialect: enumType(["pg"]),
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: "postgresql",
4851
+ dialect: "pg",
4852
4852
  id: originUUID,
4853
4853
  prevId: "",
4854
4854
  tables: {},
@@ -5311,8 +5311,7 @@ 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}`,
5315
- info: (str) => `${source_default.grey(str)}`
5314
+ suggestion: (str) => `${source_default.white.bgGray(" Suggestion ")} ${str}`
5316
5315
  };
5317
5316
  }
5318
5317
  });
@@ -5334,6 +5333,7 @@ var init_mysql = __esm({
5334
5333
  }),
5335
5334
  objectType({
5336
5335
  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(["postgresql", "mysql", "sqlite"]);
5400
+ dialect3 = enumType(["pg", "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
- schemaFilter: unionType([stringType(), stringType().array()]).optional().default(["public"]),
5521
- driver: stringType().optional(),
5520
+ schemaFilters: unionType([stringType(), stringType().array()]).optional().default(["public"]),
5521
+ driver: stringType(),
5522
5522
  // pg
5523
5523
  connectionString: stringType().optional(),
5524
5524
  // mysql
@@ -5554,9 +5554,9 @@ var init_cli = __esm({
5554
5554
  ssl: stringType().optional(),
5555
5555
  url: stringType().optional(),
5556
5556
  authToken: stringType().optional(),
5557
- introspectCasing: casing,
5557
+ "introspect-casing": casing,
5558
5558
  breakpoints: booleanType().optional().default(true)
5559
- }).passthrough();
5559
+ });
5560
5560
  configCheck = objectType({
5561
5561
  dialect: dialect3.optional(),
5562
5562
  out: stringType().optional()
@@ -11516,7 +11516,7 @@ ${withStyle.errorWarning(
11516
11516
  );
11517
11517
  return {
11518
11518
  version: "6",
11519
- dialect: "postgresql",
11519
+ dialect: "pg",
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 enumType3 = columnResponse.enum_name;
11726
+ const enumType2 = 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" ? enumType3 : columnTypeMapped,
11791
- typeSchema: enumsToReturn[`${tableSchema}.${enumType3}`] !== void 0 ? enumsToReturn[`${tableSchema}.${enumType3}`].schema : void 0,
11790
+ type: columnAdditionalDT === "USER-DEFINED" ? enumType2 : columnTypeMapped,
11791
+ typeSchema: enumsToReturn[`${tableSchema}.${enumType2}`] !== void 0 ? enumsToReturn[`${tableSchema}.${enumType2}`].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: "postgresql",
11874
+ dialect: "pg",
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 jsonCreateIndexesFoAlteredTables = alteredTables.map((it) => {
15105
+ const jsonCreateIndexesForAllAlteredTables = alteredTables.map((it) => {
15106
15106
  return prepareCreateIndexesJson(
15107
15107
  it.name,
15108
15108
  it.schema,
@@ -15131,21 +15131,14 @@ var init_snapshotsDiffer = __esm({
15131
15131
  },
15132
15132
  {}
15133
15133
  );
15134
- jsonCreateIndexesFoAlteredTables.push(
15134
+ jsonCreateIndexesForAllAlteredTables.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 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) => {
15141
+ const jsonReferencesForAllAlteredTables = alteredTables.map((it) => {
15149
15142
  const forAdded = prepareCreateReferencesJson(
15150
15143
  it.name,
15151
15144
  it.schema,
@@ -15163,10 +15156,10 @@ var init_snapshotsDiffer = __esm({
15163
15156
  );
15164
15157
  return [...forAdded, ...forAltered, ...alteredFKs];
15165
15158
  }).flat();
15166
- const jsonCreatedReferencesForAlteredTables = jsonReferencesForAlteredTables.filter(
15159
+ const jsonCreatedReferencesForAlteredTables = jsonReferencesForAllAlteredTables.filter(
15167
15160
  (t) => t.type === "create_reference"
15168
15161
  );
15169
- const jsonDroppedReferencesForAlteredTables = jsonReferencesForAlteredTables.filter(
15162
+ const jsonDroppedReferencesForAlteredTables = jsonReferencesForAllAlteredTables.filter(
15170
15163
  (t) => t.type === "delete_reference"
15171
15164
  );
15172
15165
  const createEnums = createdEnums.map((it) => {
@@ -15193,7 +15186,7 @@ var init_snapshotsDiffer = __esm({
15193
15186
  const dropSchemas = prepareDeleteSchemasJson(
15194
15187
  deletedSchemas.map((it) => it.name)
15195
15188
  );
15196
- const createTables = createdTables.map((it) => {
15189
+ const jsonPgCreateTables = createdTables.map((it) => {
15197
15190
  return preparePgCreateTableJson(it, curFull);
15198
15191
  });
15199
15192
  jsonStatements.push(...createSchemas);
@@ -15202,7 +15195,7 @@ var init_snapshotsDiffer = __esm({
15202
15195
  jsonStatements.push(...moveEnums);
15203
15196
  jsonStatements.push(...renameEnums);
15204
15197
  jsonStatements.push(...jsonAlterEnumsWithAddedValues);
15205
- jsonStatements.push(...createTables);
15198
+ jsonStatements.push(...jsonPgCreateTables);
15206
15199
  jsonStatements.push(...jsonDropTables);
15207
15200
  jsonStatements.push(...jsonSetTableSchemas);
15208
15201
  jsonStatements.push(...jsonRenameTables);
@@ -15213,16 +15206,15 @@ var init_snapshotsDiffer = __esm({
15213
15206
  jsonStatements.push(...jsonTableAlternations);
15214
15207
  jsonStatements.push(...jsonAddedCompositePKs);
15215
15208
  jsonStatements.push(...jsonAddColumnsStatemets);
15216
- jsonStatements.push(...jsonCreateReferencesForCreatedTables);
15217
15209
  jsonStatements.push(...jsonCreateIndexesForCreatedTables);
15210
+ jsonStatements.push(...jsonCreateIndexesForAllAlteredTables);
15218
15211
  jsonStatements.push(...jsonCreatedReferencesForAlteredTables);
15219
- jsonStatements.push(...jsonCreateIndexesFoAlteredTables);
15220
15212
  jsonStatements.push(...jsonDropColumnsStatemets);
15221
15213
  jsonStatements.push(...jsonAlteredCompositePKs);
15222
15214
  jsonStatements.push(...jsonAlteredUniqueConstraints);
15223
15215
  jsonStatements.push(...dropEnums);
15224
15216
  jsonStatements.push(...dropSchemas);
15225
- const sqlStatements = fromJson(jsonStatements, "postgresql");
15217
+ const sqlStatements = fromJson(jsonStatements, "pg");
15226
15218
  const uniqueSqlStatements = [];
15227
15219
  sqlStatements.forEach((ss) => {
15228
15220
  if (!uniqueSqlStatements.includes(ss)) {
@@ -15360,8 +15352,8 @@ var init_snapshotsDiffer = __esm({
15360
15352
  const jsonDeletedUniqueConstraints = [];
15361
15353
  const jsonAlteredUniqueConstraints = [];
15362
15354
  const jsonRenameColumnsStatements = columnRenames.map((it) => prepareRenameColumns(it.table, "", it.renames)).flat();
15363
- const jsonAddColumnsStatemets = columnCreates.map((it) => _prepareAddColumns(it.table, "", it.columns)).flat();
15364
15355
  const jsonDropColumnsStatemets = columnDeletes.map((it) => _prepareDropColumns(it.table, "", it.columns)).flat();
15356
+ const jsonAddColumnsStatemets = columnDeletes.map((it) => _prepareAddColumns(it.table, "", it.columns)).flat();
15365
15357
  alteredTables.forEach((it) => {
15366
15358
  let addedColumns = [];
15367
15359
  for (const addedPkName of Object.keys(it.addedCompositePKs)) {
@@ -15475,13 +15467,6 @@ var init_snapshotsDiffer = __esm({
15475
15467
  ...prepareDropIndexesJson(it.name, it.schema, droppedIndexes || {})
15476
15468
  );
15477
15469
  });
15478
- const jsonCreateReferencesForCreatedTables = createdTables.map((it) => {
15479
- return prepareCreateReferencesJson(
15480
- it.name,
15481
- it.schema,
15482
- it.foreignKeys
15483
- );
15484
- }).flat();
15485
15470
  const jsonReferencesForAllAlteredTables = alteredTables.map((it) => {
15486
15471
  const forAdded = prepareCreateReferencesJson(
15487
15472
  it.name,
@@ -15522,10 +15507,9 @@ var init_snapshotsDiffer = __esm({
15522
15507
  jsonStatements.push(...jsonAddedUniqueConstraints);
15523
15508
  jsonStatements.push(...jsonDeletedUniqueConstraints);
15524
15509
  jsonStatements.push(...jsonAddColumnsStatemets);
15525
- jsonStatements.push(...jsonCreateReferencesForCreatedTables);
15526
15510
  jsonStatements.push(...jsonCreateIndexesForCreatedTables);
15527
- jsonStatements.push(...jsonCreatedReferencesForAlteredTables);
15528
15511
  jsonStatements.push(...jsonCreateIndexesForAllAlteredTables);
15512
+ jsonStatements.push(...jsonCreatedReferencesForAlteredTables);
15529
15513
  jsonStatements.push(...jsonDropColumnsStatemets);
15530
15514
  jsonStatements.push(...jsonAlteredCompositePKs);
15531
15515
  jsonStatements.push(...jsonAddedUniqueConstraints);
@@ -16110,7 +16094,7 @@ var init_sqlgenerator = __esm({
16110
16094
  };
16111
16095
  PgCreateTableConvertor = class extends Convertor {
16112
16096
  can(statement, dialect7) {
16113
- return statement.type === "create_table" && dialect7 === "postgresql";
16097
+ return statement.type === "create_table" && dialect7 === "pg";
16114
16098
  }
16115
16099
  convert(st) {
16116
16100
  const { tableName, schema: schema4, columns, compositePKs, uniqueConstraints } = st;
@@ -16252,7 +16236,7 @@ var init_sqlgenerator = __esm({
16252
16236
  };
16253
16237
  PgAlterTableAddUniqueConstraintConvertor = class extends Convertor {
16254
16238
  can(statement, dialect7) {
16255
- return statement.type === "create_unique_constraint" && dialect7 === "postgresql";
16239
+ return statement.type === "create_unique_constraint" && dialect7 === "pg";
16256
16240
  }
16257
16241
  convert(statement) {
16258
16242
  const unsquashed = PgSquasher.unsquashUnique(statement.data);
@@ -16262,7 +16246,7 @@ var init_sqlgenerator = __esm({
16262
16246
  };
16263
16247
  PgAlterTableDropUniqueConstraintConvertor = class extends Convertor {
16264
16248
  can(statement, dialect7) {
16265
- return statement.type === "delete_unique_constraint" && dialect7 === "postgresql";
16249
+ return statement.type === "delete_unique_constraint" && dialect7 === "pg";
16266
16250
  }
16267
16251
  convert(statement) {
16268
16252
  const unsquashed = PgSquasher.unsquashUnique(statement.data);
@@ -16351,7 +16335,7 @@ var init_sqlgenerator = __esm({
16351
16335
  };
16352
16336
  PgDropTableConvertor = class extends Convertor {
16353
16337
  can(statement, dialect7) {
16354
- return statement.type === "drop_table" && dialect7 === "postgresql";
16338
+ return statement.type === "drop_table" && dialect7 === "pg";
16355
16339
  }
16356
16340
  convert(statement) {
16357
16341
  const { tableName, schema: schema4 } = statement;
@@ -16379,7 +16363,7 @@ var init_sqlgenerator = __esm({
16379
16363
  };
16380
16364
  PgRenameTableConvertor = class extends Convertor {
16381
16365
  can(statement, dialect7) {
16382
- return statement.type === "rename_table" && dialect7 === "postgresql";
16366
+ return statement.type === "rename_table" && dialect7 === "pg";
16383
16367
  }
16384
16368
  convert(statement) {
16385
16369
  const { tableNameFrom, tableNameTo, toSchema, fromSchema } = statement;
@@ -16410,7 +16394,7 @@ var init_sqlgenerator = __esm({
16410
16394
  };
16411
16395
  PgAlterTableRenameColumnConvertor = class extends Convertor {
16412
16396
  can(statement, dialect7) {
16413
- return statement.type === "alter_table_rename_column" && dialect7 === "postgresql";
16397
+ return statement.type === "alter_table_rename_column" && dialect7 === "pg";
16414
16398
  }
16415
16399
  convert(statement) {
16416
16400
  const { tableName, oldColumnName, newColumnName, schema: schema4 } = statement;
@@ -16438,7 +16422,7 @@ var init_sqlgenerator = __esm({
16438
16422
  };
16439
16423
  PgAlterTableDropColumnConvertor = class extends Convertor {
16440
16424
  can(statement, dialect7) {
16441
- return statement.type === "alter_table_drop_column" && dialect7 === "postgresql";
16425
+ return statement.type === "alter_table_drop_column" && dialect7 === "pg";
16442
16426
  }
16443
16427
  convert(statement) {
16444
16428
  const { tableName, columnName, schema: schema4 } = statement;
@@ -16466,7 +16450,7 @@ var init_sqlgenerator = __esm({
16466
16450
  };
16467
16451
  PgAlterTableAddColumnConvertor = class extends Convertor {
16468
16452
  can(statement, dialect7) {
16469
- return statement.type === "alter_table_add_column" && dialect7 === "postgresql";
16453
+ return statement.type === "alter_table_add_column" && dialect7 === "pg";
16470
16454
  }
16471
16455
  convert(statement) {
16472
16456
  const { tableName, column: column4, schema: schema4 } = statement;
@@ -16511,7 +16495,7 @@ var init_sqlgenerator = __esm({
16511
16495
  };
16512
16496
  PgAlterTableAlterColumnSetTypeConvertor = class extends Convertor {
16513
16497
  can(statement, dialect7) {
16514
- return statement.type === "alter_table_alter_column_set_type" && dialect7 === "postgresql";
16498
+ return statement.type === "alter_table_alter_column_set_type" && dialect7 === "pg";
16515
16499
  }
16516
16500
  convert(statement) {
16517
16501
  const { tableName, columnName, newDataType, schema: schema4 } = statement;
@@ -16536,7 +16520,7 @@ var init_sqlgenerator = __esm({
16536
16520
  };
16537
16521
  PgAlterTableAlterColumnSetDefaultConvertor = class extends Convertor {
16538
16522
  can(statement, dialect7) {
16539
- return statement.type === "alter_table_alter_column_set_default" && dialect7 === "postgresql";
16523
+ return statement.type === "alter_table_alter_column_set_default" && dialect7 === "pg";
16540
16524
  }
16541
16525
  convert(statement) {
16542
16526
  const { tableName, columnName, schema: schema4 } = statement;
@@ -16561,7 +16545,7 @@ var init_sqlgenerator = __esm({
16561
16545
  };
16562
16546
  PgAlterTableAlterColumnDropDefaultConvertor = class extends Convertor {
16563
16547
  can(statement, dialect7) {
16564
- return statement.type === "alter_table_alter_column_drop_default" && dialect7 === "postgresql";
16548
+ return statement.type === "alter_table_alter_column_drop_default" && dialect7 === "pg";
16565
16549
  }
16566
16550
  convert(statement) {
16567
16551
  const { tableName, columnName, schema: schema4 } = statement;
@@ -16673,7 +16657,7 @@ var init_sqlgenerator = __esm({
16673
16657
  };
16674
16658
  PgAlterTableCreateCompositePrimaryKeyConvertor = class extends Convertor {
16675
16659
  can(statement, dialect7) {
16676
- return statement.type === "create_composite_pk" && dialect7 === "postgresql";
16660
+ return statement.type === "create_composite_pk" && dialect7 === "pg";
16677
16661
  }
16678
16662
  convert(statement) {
16679
16663
  const { name, columns } = PgSquasher.unsquashPK(statement.data);
@@ -16683,7 +16667,7 @@ var init_sqlgenerator = __esm({
16683
16667
  };
16684
16668
  PgAlterTableDeleteCompositePrimaryKeyConvertor = class extends Convertor {
16685
16669
  can(statement, dialect7) {
16686
- return statement.type === "delete_composite_pk" && dialect7 === "postgresql";
16670
+ return statement.type === "delete_composite_pk" && dialect7 === "pg";
16687
16671
  }
16688
16672
  convert(statement) {
16689
16673
  const { name, columns } = PgSquasher.unsquashPK(statement.data);
@@ -16693,7 +16677,7 @@ var init_sqlgenerator = __esm({
16693
16677
  };
16694
16678
  PgAlterTableAlterCompositePrimaryKeyConvertor = class extends Convertor {
16695
16679
  can(statement, dialect7) {
16696
- return statement.type === "alter_composite_pk" && dialect7 === "postgresql";
16680
+ return statement.type === "alter_composite_pk" && dialect7 === "pg";
16697
16681
  }
16698
16682
  convert(statement) {
16699
16683
  const { name, columns } = PgSquasher.unsquashPK(statement.old);
@@ -16816,7 +16800,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
16816
16800
  };
16817
16801
  PgAlterTableAlterColumnSetPrimaryKeyConvertor = class extends Convertor {
16818
16802
  can(statement, dialect7) {
16819
- return statement.type === "alter_table_alter_column_set_pk" && dialect7 === "postgresql";
16803
+ return statement.type === "alter_table_alter_column_set_pk" && dialect7 === "pg";
16820
16804
  }
16821
16805
  convert(statement) {
16822
16806
  const { tableName, columnName } = statement;
@@ -16826,7 +16810,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
16826
16810
  };
16827
16811
  PgAlterTableAlterColumnDropPrimaryKeyConvertor = class extends Convertor {
16828
16812
  can(statement, dialect7) {
16829
- return statement.type === "alter_table_alter_column_drop_pk" && dialect7 === "postgresql";
16813
+ return statement.type === "alter_table_alter_column_drop_pk" && dialect7 === "pg";
16830
16814
  }
16831
16815
  convert(statement) {
16832
16816
  const { tableName, columnName, schema: schema4 } = statement;
@@ -16850,7 +16834,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
16850
16834
  };
16851
16835
  PgAlterTableAlterColumnSetNotNullConvertor = class extends Convertor {
16852
16836
  can(statement, dialect7) {
16853
- return statement.type === "alter_table_alter_column_set_notnull" && dialect7 === "postgresql";
16837
+ return statement.type === "alter_table_alter_column_set_notnull" && dialect7 === "pg";
16854
16838
  }
16855
16839
  convert(statement) {
16856
16840
  const { tableName, columnName } = statement;
@@ -16905,7 +16889,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
16905
16889
  };
16906
16890
  PgAlterTableAlterColumnDropNotNullConvertor = class extends Convertor {
16907
16891
  can(statement, dialect7) {
16908
- return statement.type === "alter_table_alter_column_drop_notnull" && dialect7 === "postgresql";
16892
+ return statement.type === "alter_table_alter_column_drop_notnull" && dialect7 === "pg";
16909
16893
  }
16910
16894
  convert(statement) {
16911
16895
  const { tableName, columnName } = statement;
@@ -16930,7 +16914,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
16930
16914
  };
16931
16915
  PgCreateForeignKeyConvertor = class extends Convertor {
16932
16916
  can(statement, dialect7) {
16933
- return statement.type === "create_reference" && dialect7 === "postgresql";
16917
+ return statement.type === "create_reference" && dialect7 === "pg";
16934
16918
  }
16935
16919
  convert(statement) {
16936
16920
  const {
@@ -16995,7 +16979,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
16995
16979
  };
16996
16980
  PgAlterForeignKeyConvertor = class extends Convertor {
16997
16981
  can(statement, dialect7) {
16998
- return statement.type === "alter_reference" && dialect7 === "postgresql";
16982
+ return statement.type === "alter_reference" && dialect7 === "pg";
16999
16983
  }
17000
16984
  convert(statement) {
17001
16985
  const newFk = PgSquasher.unsquashFK(statement.data);
@@ -17034,7 +17018,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
17034
17018
  };
17035
17019
  PgDeleteForeignKeyConvertor = class extends Convertor {
17036
17020
  can(statement, dialect7) {
17037
- return statement.type === "delete_reference" && dialect7 === "postgresql";
17021
+ return statement.type === "delete_reference" && dialect7 === "pg";
17038
17022
  }
17039
17023
  convert(statement) {
17040
17024
  const tableFrom = statement.tableName;
@@ -17071,7 +17055,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
17071
17055
  };
17072
17056
  CreatePgIndexConvertor = class extends Convertor {
17073
17057
  can(statement, dialect7) {
17074
- return statement.type === "create_index" && dialect7 === "postgresql";
17058
+ return statement.type === "create_index" && dialect7 === "pg";
17075
17059
  }
17076
17060
  convert(statement) {
17077
17061
  const { name, columns, isUnique } = PgSquasher.unsquashIdx(statement.data);
@@ -17110,7 +17094,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
17110
17094
  };
17111
17095
  PgDropIndexConvertor = class extends Convertor {
17112
17096
  can(statement, dialect7) {
17113
- return statement.type === "drop_index" && dialect7 === "postgresql";
17097
+ return statement.type === "drop_index" && dialect7 === "pg";
17114
17098
  }
17115
17099
  convert(statement) {
17116
17100
  const { name } = PgSquasher.unsquashIdx(statement.data);
@@ -17119,7 +17103,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
17119
17103
  };
17120
17104
  PgCreateSchemaConvertor = class extends Convertor {
17121
17105
  can(statement, dialect7) {
17122
- return statement.type === "create_schema" && dialect7 === "postgresql";
17106
+ return statement.type === "create_schema" && dialect7 === "pg";
17123
17107
  }
17124
17108
  convert(statement) {
17125
17109
  const { name } = statement;
@@ -17129,7 +17113,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
17129
17113
  };
17130
17114
  PgRenameSchemaConvertor = class extends Convertor {
17131
17115
  can(statement, dialect7) {
17132
- return statement.type === "rename_schema" && dialect7 === "postgresql";
17116
+ return statement.type === "rename_schema" && dialect7 === "pg";
17133
17117
  }
17134
17118
  convert(statement) {
17135
17119
  const { from, to } = statement;
@@ -17139,7 +17123,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
17139
17123
  };
17140
17124
  PgDropSchemaConvertor = class extends Convertor {
17141
17125
  can(statement, dialect7) {
17142
- return statement.type === "drop_schema" && dialect7 === "postgresql";
17126
+ return statement.type === "drop_schema" && dialect7 === "pg";
17143
17127
  }
17144
17128
  convert(statement) {
17145
17129
  const { name } = statement;
@@ -17149,7 +17133,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
17149
17133
  };
17150
17134
  PgAlterTableSetSchemaConvertor = class extends Convertor {
17151
17135
  can(statement, dialect7) {
17152
- return statement.type === "alter_table_set_schema" && dialect7 === "postgresql";
17136
+ return statement.type === "alter_table_set_schema" && dialect7 === "pg";
17153
17137
  }
17154
17138
  convert(statement) {
17155
17139
  const { tableName, schemaFrom, schemaTo } = statement;
@@ -17159,7 +17143,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
17159
17143
  };
17160
17144
  PgAlterTableSetNewSchemaConvertor = class extends Convertor {
17161
17145
  can(statement, dialect7) {
17162
- return statement.type === "alter_table_set_new_schema" && dialect7 === "postgresql";
17146
+ return statement.type === "alter_table_set_new_schema" && dialect7 === "pg";
17163
17147
  }
17164
17148
  convert(statement) {
17165
17149
  const { tableName, to, from } = statement;
@@ -17170,7 +17154,7 @@ ${BREAKPOINT}ALTER TABLE ${tableNameWithSchema} ADD CONSTRAINT ${statement.newCo
17170
17154
  };
17171
17155
  PgAlterTableRemoveFromSchemaConvertor = class extends Convertor {
17172
17156
  can(statement, dialect7) {
17173
- return statement.type === "alter_table_remove_from_schema" && dialect7 === "postgresql";
17157
+ return statement.type === "alter_table_remove_from_schema" && dialect7 === "pg";
17174
17158
  }
17175
17159
  convert(statement) {
17176
17160
  const { tableName, schema: schema4 } = statement;
@@ -18945,7 +18929,7 @@ var pgSuggestions = async (db, statements) => {
18945
18929
  }
18946
18930
  }
18947
18931
  }
18948
- const stmnt = fromJson([statement], "postgresql")[0];
18932
+ const stmnt = fromJson([statement], "pg")[0];
18949
18933
  if (typeof stmnt !== "undefined") {
18950
18934
  if (statement.type === "drop_table") {
18951
18935
  statementsToExecute.push(
@@ -1,9 +1,9 @@
1
1
  import { TypeOf } from "zod";
2
- export declare const dialect: import("zod").ZodEnum<["postgresql", "mysql", "sqlite"]>;
2
+ export declare const dialect: import("zod").ZodEnum<["pg", "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").ZodLiteral<"postgresql">;
6
+ dialect: import("zod").ZodEnum<["pg"]>;
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: "postgresql";
117
+ dialect: "pg";
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: "postgresql";
145
+ dialect: "pg";
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<"postgresql">;
357
+ dialect: import("zod").ZodLiteral<"pg">;
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: "postgresql";
660
+ dialect: "pg";
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: "postgresql";
724
+ dialect: "pg";
725
725
  schemas: Record<string, string>;
726
726
  _meta: {
727
727
  columns: Record<string, string>;