Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasfoerg authored and koskimas committed Nov 26, 2022
1 parent 8b74e23 commit 1b88633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dialect/sqlite/sqlite-introspector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class SqliteIntrospector implements DatabaseIntrospector {
const autoIncrementCol = createSql[0]?.sql
?.split(/[\(\),]/)
?.find((it) => it.toLowerCase().includes('autoincrement'))
?.trimStart()
?.trimStart()
?.split(/\s+/)?.[0]
?.replace(/["`]/g, '')

Expand Down

0 comments on commit 1b88633

Please sign in to comment.