mirror of
https://github.com/haexhub/haex-hub.git
synced 2025-12-16 22:20:51 +01:00
62 lines
1.8 KiB
TypeScript
62 lines
1.8 KiB
TypeScript
import {
|
|
integer,
|
|
sqliteTable,
|
|
text,
|
|
unique,
|
|
type AnySQLiteColumn,
|
|
} from 'drizzle-orm/sqlite-core'
|
|
|
|
export const haexSettings = sqliteTable('haex_settings', {
|
|
id: text().primaryKey(),
|
|
key: text(),
|
|
value: text(),
|
|
})
|
|
export type InsertHaexSettings = typeof haexSettings.$inferInsert
|
|
export type SelectHaexSettings = typeof haexSettings.$inferSelect
|
|
|
|
export const haexExtensions = sqliteTable('haex_extensions', {
|
|
id: text().primaryKey(),
|
|
name: text(),
|
|
author: text(),
|
|
enabled: integer({ mode: 'boolean' }),
|
|
icon: text(),
|
|
url: text(),
|
|
version: text(),
|
|
})
|
|
export type InsertHaexExtensions = typeof haexExtensions.$inferInsert
|
|
export type SelectHaexExtensions = typeof haexExtensions.$inferSelect
|
|
|
|
export const haexExtensionsPermissions = sqliteTable(
|
|
'haex_extensions_permissions',
|
|
{
|
|
id: text().primaryKey(),
|
|
extensionId: text('extension_id').references(
|
|
(): AnySQLiteColumn => haexExtensions.id,
|
|
),
|
|
resource: text({ enum: ['fs', 'http', 'db', 'shell'] }),
|
|
operation: text({ enum: ['read', 'write', 'create'] }),
|
|
path: text(),
|
|
},
|
|
(table) => [
|
|
unique().on(table.extensionId, table.resource, table.operation, table.path),
|
|
],
|
|
)
|
|
export type InsertHaexExtensionsPermissions =
|
|
typeof haexExtensionsPermissions.$inferInsert
|
|
export type SelectHaexExtensionsPermissions =
|
|
typeof haexExtensionsPermissions.$inferSelect
|
|
|
|
export const haexNotifications = sqliteTable('haex_notofications', {
|
|
id: text().primaryKey(),
|
|
title: text(),
|
|
text: text(),
|
|
type: text({ enum: ['error', 'success', 'warning', 'info'] }).notNull(),
|
|
read: integer({ mode: 'boolean' }),
|
|
date: text(),
|
|
image: text(),
|
|
alt: text(),
|
|
icon: text(),
|
|
})
|
|
export type InsertHaexNotifications = typeof haexNotifications.$inferInsert
|
|
export type SelectHaexNotifications = typeof haexNotifications.$inferSelect
|