Skip to content

Commit

Permalink
debug: added AUTOINCREMENT to the lsat table schema
Browse files Browse the repository at this point in the history
  • Loading branch information
tobi-bams committed Jan 12, 2024
1 parent ccd898b commit 41e8f4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/src/utils/migrate.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/utils/migrate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export default async function migrate(): Promise<void> {
sphinxLogger.info('adding lsat table', logging.DB)
await sequelize.query(`
CREATE TABLE sphinx_lsats (
id BIGINT NOT NULL PRIMARY KEY,
id BIGINT NOT NULL PRIMARY KEY AUTOINCREMENT,
identifier TEXT,
created_at DATETIME,
updated_at DATETIME,
Expand Down

0 comments on commit 41e8f4e

Please sign in to comment.