feat(db): update drizzle version

This commit is contained in:
Lars Hampe 2024-11-04 20:53:22 +01:00
parent abf009a045
commit a8392312c1
7 changed files with 54 additions and 46 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -12,14 +12,14 @@
"devDependencies": { "devDependencies": {
"@types/bun": "latest", "@types/bun": "latest",
"@types/pg": "^8.11.10", "@types/pg": "^8.11.10",
"drizzle-kit": "^0.24.2" "drizzle-kit": "^0.27.1"
}, },
"peerDependencies": { "peerDependencies": {
"typescript": "^5.0.0" "typescript": "^5.0.0"
}, },
"dependencies": { "dependencies": {
"@boring.tools/logger": "workspace:*", "@boring.tools/logger": "workspace:*",
"drizzle-orm": "^0.33.0", "drizzle-orm": "^0.36.0",
"pg": "^8.13.0" "pg": "^8.13.0"
} }
} }

View File

@ -0,0 +1,7 @@
import { timestamp, uuid } from 'drizzle-orm/pg-core'
export const _basic_schema = {
id: uuid().primaryKey(),
createdAt: timestamp({ withTimezone: true }).defaultNow().notNull(),
updatedAt: timestamp({ withTimezone: true }),
}

View File

@ -1,16 +1,17 @@
import { relations } from 'drizzle-orm' import { relations } from 'drizzle-orm'
import { pgTable, text, timestamp, uuid, varchar } from 'drizzle-orm/pg-core' import { pgTable, text, timestamp, uuid, varchar } from 'drizzle-orm/pg-core'
import { user } from '.' import { user } from '.'
import { _basic_schema } from './_basic'
export const access_token = pgTable('access_token', { export const access_token = pgTable('access_token', {
id: uuid('id').primaryKey().defaultRandom(), ..._basic_schema,
userId: varchar('userId', { length: 32 }).references(() => user.id, {
userId: varchar({ length: 32 }).references(() => user.id, {
onDelete: 'cascade', onDelete: 'cascade',
}), }),
token: text('token').notNull(), token: text().notNull(),
name: text('name').notNull(), name: text().notNull(),
createdAt: timestamp('createdAt').defaultNow().notNull(), lastUsedOn: timestamp(),
lastUsedOn: timestamp('lastUsedOn'),
}) })
export const access_token_relation = relations(access_token, ({ one }) => ({ export const access_token_relation = relations(access_token, ({ one }) => ({

View File

@ -11,33 +11,32 @@ import {
} from 'drizzle-orm/pg-core' } from 'drizzle-orm/pg-core'
import { json } from 'drizzle-orm/pg-core' import { json } from 'drizzle-orm/pg-core'
import { uniqueIndex } from 'drizzle-orm/pg-core' import { uniqueIndex } from 'drizzle-orm/pg-core'
import { _basic_schema } from './_basic'
import { page } from './page' import { page } from './page'
import { user } from './user' import { user } from './user'
export const changelog = pgTable('changelog', { export const changelog = pgTable('changelog', {
id: uuid('id').primaryKey().defaultRandom(), ..._basic_schema,
createdAt: timestamp('createdAt').defaultNow(),
updatedAt: timestamp('updatedAt'),
userId: varchar('userId', { length: 32 }).references(() => user.id, { userId: varchar({ length: 32 }).references(() => user.id, {
onDelete: 'cascade', onDelete: 'cascade',
}), }),
pageId: uuid('pageId').references(() => page.id), pageId: uuid().references(() => page.id),
title: varchar('title', { length: 256 }), title: varchar({ length: 256 }),
description: text('description'), description: text(),
isSemver: boolean('isSemver').default(true), isSemver: boolean().default(true),
isConventional: boolean('isConventional').default(true), isConventional: boolean().default(true),
}) })
export const changelogs_to_pages = pgTable( export const changelogs_to_pages = pgTable(
'changelogs_to_pages', 'changelogs_to_pages',
{ {
changelogId: uuid('changelogId') changelogId: uuid()
.notNull() .notNull()
.references(() => changelog.id, { onDelete: 'cascade' }), .references(() => changelog.id, { onDelete: 'cascade' }),
pageId: uuid('pageId') pageId: uuid()
.notNull() .notNull()
.references(() => page.id, { onDelete: 'cascade' }), .references(() => page.id, { onDelete: 'cascade' }),
}, },
@ -77,50 +76,50 @@ export const changelog_version_status = pgEnum('status', [
]) ])
export const changelog_version = pgTable('changelog_version', { export const changelog_version = pgTable('changelog_version', {
id: uuid('id').primaryKey().defaultRandom(), id: uuid().primaryKey().defaultRandom(),
createdAt: timestamp('createdAt').defaultNow(), createdAt: timestamp().defaultNow(),
updatedAt: timestamp('updatedAt'), updatedAt: timestamp(),
releasedAt: timestamp('releasedAt'), releasedAt: timestamp(),
changelogId: uuid('changelogId') changelogId: uuid()
.references(() => changelog.id, { .references(() => changelog.id, {
onDelete: 'cascade', onDelete: 'cascade',
}) })
.notNull(), .notNull(),
version: varchar('version', { length: 32 }).notNull(), version: varchar({ length: 32 }).notNull(),
markdown: text('markdown').notNull(), markdown: text().notNull(),
status: changelog_version_status('status').default('draft').notNull(), status: changelog_version_status().default('draft').notNull(),
}) })
export const changelog_commit = pgTable( export const changelog_commit = pgTable(
'changelog_commit', 'changelog_commit',
{ {
id: uuid('id').primaryKey().defaultRandom(), id: uuid().primaryKey().defaultRandom(),
createdAt: timestamp('createdAt'), createdAt: timestamp(),
changelogId: uuid('changelogId').references(() => changelog.id, { changelogId: uuid().references(() => changelog.id, {
onDelete: 'cascade', onDelete: 'cascade',
}), }),
versionId: uuid('versionId').references(() => changelog_version.id, { versionId: uuid().references(() => changelog_version.id, {
onUpdate: 'set null', onUpdate: 'set null',
}), }),
commit: varchar('commit', { length: 8 }).notNull(), commit: varchar({ length: 8 }).notNull(),
parent: varchar('parent', { length: 8 }), parent: varchar({ length: 8 }),
subject: text('subject').notNull(), subject: text().notNull(),
author: json('author').$type<{ author: json().$type<{
name: string name: string
email: string email: string
date: string date: string
}>(), }>(),
commiter: json('comitter').$type<{ commiter: json().$type<{
name: string name: string
email: string email: string
date: string date: string
}>(), }>(),
body: text('body'), body: text(),
}, },
(table) => ({ (table) => ({
unique: uniqueIndex('unique').on(table.changelogId, table.commit), unique: uniqueIndex('unique').on(table.changelogId, table.commit),

View File

@ -1,18 +1,19 @@
import { relations } from 'drizzle-orm' import { relations } from 'drizzle-orm'
import { pgTable, text, uuid, varchar } from 'drizzle-orm/pg-core' import { pgTable, text, uuid, varchar } from 'drizzle-orm/pg-core'
import { changelog, changelogs_to_pages } from './changelog' import { _basic_schema } from './_basic'
import { changelogs_to_pages } from './changelog'
import { user } from './user' import { user } from './user'
export const page = pgTable('page', { export const page = pgTable('page', {
id: uuid('id').primaryKey().defaultRandom(), ..._basic_schema,
userId: varchar('userId', { length: 32 }).references(() => user.id, { userId: varchar({ length: 32 }).references(() => user.id, {
onDelete: 'cascade', onDelete: 'cascade',
}), }),
title: text('title').notNull(), title: text().notNull(),
description: text('description').notNull(), description: text().notNull(),
icon: text('icon').default(''), icon: text().default(''),
}) })
export const pageRelation = relations(page, ({ many }) => ({ export const pageRelation = relations(page, ({ many }) => ({

View File

@ -4,9 +4,9 @@ import { access_token } from '.'
import { changelog } from './changelog' import { changelog } from './changelog'
export const user = pgTable('user', { export const user = pgTable('user', {
id: varchar('id', { length: 32 }).primaryKey(), // Clerk User Id id: varchar({ length: 32 }).primaryKey(), // Clerk User Id
name: text('name'), name: text(),
email: text('email').notNull().unique(), email: text().notNull().unique(),
}) })
export const userRelation = relations(user, ({ many }) => ({ export const userRelation = relations(user, ({ many }) => ({