|
|
@ -1,9 +1,9 @@
|
|
|
|
import { sql } from "drizzle-orm";
|
|
|
|
import { sql } from 'drizzle-orm'
|
|
|
|
import { text, sqliteTable } from "drizzle-orm/sqlite-core";
|
|
|
|
import { text, sqliteTable } from 'drizzle-orm/sqlite-core'
|
|
|
|
|
|
|
|
|
|
|
|
export const users = sqliteTable("users", {
|
|
|
|
export const users = sqliteTable('users', {
|
|
|
|
// id è l'id unico di questo utente, non è modificabile una volta creato l'utente.
|
|
|
|
// id è l'id unico di questo utente, non è modificabile una volta creato l'utente.
|
|
|
|
id: text("id")
|
|
|
|
id: text('id')
|
|
|
|
.primaryKey()
|
|
|
|
.primaryKey()
|
|
|
|
.default(sql`(lower(hex(randomblob(16))))`),
|
|
|
|
.default(sql`(lower(hex(randomblob(16))))`),
|
|
|
|
|
|
|
|
|
|
|
@ -14,30 +14,30 @@ export const users = sqliteTable("users", {
|
|
|
|
// chiesto se usare quello dell'account che sta usando o se cambiarlo
|
|
|
|
// chiesto se usare quello dell'account che sta usando o se cambiarlo
|
|
|
|
// (in teoria non dovrebbe essere un problema poterlo modificare
|
|
|
|
// (in teoria non dovrebbe essere un problema poterlo modificare
|
|
|
|
// successivamente).
|
|
|
|
// successivamente).
|
|
|
|
username: text("username").unique().notNull(),
|
|
|
|
username: text('username').unique().notNull(),
|
|
|
|
|
|
|
|
|
|
|
|
// FullName da mostrare in giro per il sito
|
|
|
|
// FullName da mostrare in giro per il sito
|
|
|
|
fullName: text("fullname"),
|
|
|
|
fullName: text('fullname'),
|
|
|
|
|
|
|
|
|
|
|
|
// Email per eventuale contatto
|
|
|
|
// Email per eventuale contatto
|
|
|
|
email: text("email"),
|
|
|
|
email: text('email'),
|
|
|
|
});
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
export type User = typeof users.$inferSelect; // return type when queried
|
|
|
|
export type User = typeof users.$inferSelect // return type when queried
|
|
|
|
export type InsertUser = typeof users.$inferInsert; // insert type
|
|
|
|
export type InsertUser = typeof users.$inferInsert // insert type
|
|
|
|
|
|
|
|
|
|
|
|
export const accounts = sqliteTable("accounts", {
|
|
|
|
export const accounts = sqliteTable('accounts', {
|
|
|
|
// id è l'id unico di questo account, non è modificabile una volta creato l'account.
|
|
|
|
// id è l'id unico di questo account, non è modificabile una volta creato l'account.
|
|
|
|
id: text("id").primaryKey(),
|
|
|
|
id: text('id').primaryKey(),
|
|
|
|
|
|
|
|
|
|
|
|
userId: text("userId")
|
|
|
|
userId: text('userId')
|
|
|
|
.notNull()
|
|
|
|
.notNull()
|
|
|
|
.references(() => users.id),
|
|
|
|
.references(() => users.id),
|
|
|
|
|
|
|
|
|
|
|
|
provider: text("provider").$type<"poisson" | "ateneo">().notNull(),
|
|
|
|
provider: text('provider').$type<'poisson' | 'ateneo'>().notNull(),
|
|
|
|
|
|
|
|
|
|
|
|
token: text("token").notNull(),
|
|
|
|
token: text('token').notNull(),
|
|
|
|
});
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
export type Account = typeof accounts.$inferSelect; // return type when queried
|
|
|
|
export type Account = typeof accounts.$inferSelect // return type when queried
|
|
|
|
export type InsertAccount = typeof accounts.$inferInsert; // insert type
|
|
|
|
export type InsertAccount = typeof accounts.$inferInsert // insert type
|
|
|
|