mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-28 03:00:29 -04:00
74 lines
2.4 KiB
TypeScript
74 lines
2.4 KiB
TypeScript
import { sql } from 'drizzle-orm'
|
|
import { boolean, foreignKey, pgTable, text, timestamp, unique } from 'drizzle-orm/pg-core'
|
|
|
|
export const verification = pgTable('verification', {
|
|
id: text().primaryKey().notNull(),
|
|
identifier: text().notNull(),
|
|
value: text().notNull(),
|
|
expiresAt: timestamp('expires_at', { mode: 'string' }).notNull(),
|
|
createdAt: timestamp('created_at', { mode: 'string' }),
|
|
updatedAt: timestamp('updated_at', { mode: 'string' }),
|
|
})
|
|
|
|
export const user = pgTable(
|
|
'user',
|
|
{
|
|
id: text().primaryKey().notNull(),
|
|
name: text().notNull(),
|
|
email: text().notNull(),
|
|
emailVerified: boolean('email_verified').notNull(),
|
|
image: text(),
|
|
createdAt: timestamp('created_at', { mode: 'string' }).notNull(),
|
|
updatedAt: timestamp('updated_at', { mode: 'string' }).notNull(),
|
|
},
|
|
(table) => [unique('user_email_unique').on(table.email)]
|
|
)
|
|
|
|
export const account = pgTable(
|
|
'account',
|
|
{
|
|
id: text().primaryKey().notNull(),
|
|
accountId: text('account_id').notNull(),
|
|
providerId: text('provider_id').notNull(),
|
|
userId: text('user_id').notNull(),
|
|
accessToken: text('access_token'),
|
|
refreshToken: text('refresh_token'),
|
|
idToken: text('id_token'),
|
|
accessTokenExpiresAt: timestamp('access_token_expires_at', { mode: 'string' }),
|
|
refreshTokenExpiresAt: timestamp('refresh_token_expires_at', { mode: 'string' }),
|
|
scope: text(),
|
|
password: text(),
|
|
createdAt: timestamp('created_at', { mode: 'string' }).notNull(),
|
|
updatedAt: timestamp('updated_at', { mode: 'string' }).notNull(),
|
|
},
|
|
(table) => [
|
|
foreignKey({
|
|
columns: [table.userId],
|
|
foreignColumns: [user.id],
|
|
name: 'account_user_id_user_id_fk',
|
|
}).onDelete('cascade'),
|
|
]
|
|
)
|
|
|
|
export const session = pgTable(
|
|
'session',
|
|
{
|
|
id: text().primaryKey().notNull(),
|
|
expiresAt: timestamp('expires_at', { mode: 'string' }).notNull(),
|
|
token: text().notNull(),
|
|
createdAt: timestamp('created_at', { mode: 'string' }).notNull(),
|
|
updatedAt: timestamp('updated_at', { mode: 'string' }).notNull(),
|
|
ipAddress: text('ip_address'),
|
|
userAgent: text('user_agent'),
|
|
userId: text('user_id').notNull(),
|
|
},
|
|
(table) => [
|
|
foreignKey({
|
|
columns: [table.userId],
|
|
foreignColumns: [user.id],
|
|
name: 'session_user_id_user_id_fk',
|
|
}).onDelete('cascade'),
|
|
unique('session_token_unique').on(table.token),
|
|
]
|
|
)
|