Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
L-Mario564 committed Oct 7, 2024
1 parent 3804b57 commit ad967af
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion drizzle-kit/src/serializer/mysqlSerializer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
Table,
UniqueConstraint,
} from '../serializer/mysqlSchema';
import { type DB, escapeSingleQuotes, unescapeSingleQuotes, getColumnCasing } from '../utils';
import { type DB, escapeSingleQuotes, getColumnCasing, unescapeSingleQuotes } from '../utils';
import { sqlToStr } from '.';
// import { MySqlColumnWithAutoIncrement } from "drizzle-orm/mysql-core";
// import { MySqlDateBaseColumn } from "drizzle-orm/mysql-core";
Expand Down
2 changes: 1 addition & 1 deletion drizzle-kit/src/serializer/pgSerializer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import type {
Table,
UniqueConstraint,
} from '../serializer/pgSchema';
import { type DB, escapeSingleQuotes, isPgArrayType, unescapeSingleQuotes, getColumnCasing } from '../utils';
import { type DB, escapeSingleQuotes, getColumnCasing, isPgArrayType, unescapeSingleQuotes } from '../utils';
import { sqlToStr } from '.';

export const indexName = (tableName: string, columns: string[]) => {
Expand Down
2 changes: 1 addition & 1 deletion drizzle-kit/src/serializer/sqliteSerializer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import type {
Table,
UniqueConstraint,
} from '../serializer/sqliteSchema';
import { escapeSingleQuotes, type SQLiteDB, unescapeSingleQuotes, getColumnCasing } from '../utils';
import { escapeSingleQuotes, getColumnCasing, type SQLiteDB, unescapeSingleQuotes } from '../utils';
import { sqlToStr } from '.';

export const generateSqliteSnapshot = (
Expand Down
2 changes: 1 addition & 1 deletion drizzle-kit/tests/mysql.test.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { sql } from 'drizzle-orm';
import {
foreignKey,
index,
int,
json,
mysqlEnum,
foreignKey,
mysqlSchema,
mysqlTable,
primaryKey,
Expand Down

0 comments on commit ad967af

Please sign in to comment.