feat(db): remove shortHash from version

This commit is contained in:
Lars Hampe 2024-10-09 14:32:09 +02:00
parent 72082a51d1
commit d542cd14da

View File

@ -56,7 +56,6 @@ export const changelog_version = pgTable('changelog_version', {
version: varchar('version', { length: 32 }).notNull(),
markdown: text('markdown').notNull(),
status: changelog_version_status('status').default('draft').notNull(),
shortHash: varchar('shortHash', { length: 8 }).notNull(),
})
export const changelog_commit = pgTable(