1 |
|
2 | import { sqliteTable, text, integer } from 'drizzle-orm/sqlite-core' |
3 |
|
4 | export const user = sqliteTable('user', { |
5 | id: text('id').primaryKey(), |
6 | name: text('name').notNull(), |
7 | username: text('username').notNull().unique(), |
8 | passwordHash: text('password_hash').notNull() |
9 | }) |
10 |
|
11 | export const session = sqliteTable("session", { |
12 | id: text('id').primaryKey(), |
13 | userId: text('user_id').notNull().references(() => user.id), |
14 | expiresAt: integer('expires_at', { mode: 'timestamp' }).notNull() |
15 | }) |
16 |
|
17 | export const tools = sqliteTable("tools", { |
18 | id: integer('id').primaryKey(), |
19 | title: text('title').notNull(), |
20 | description: text('description').notNull(), |
21 | image: text('image').notNull(), |
22 | serialnum: text('link').notNull(), |
23 | user_id: text('user_id').notNull().references(() => user.id), |
24 | }) |