mirror of https://github.com/wg-easy/wg-easy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
592 B
21 lines
592 B
import { sql } from 'drizzle-orm';
|
|
import { sqliteTable, text } from 'drizzle-orm/sqlite-core';
|
|
|
|
import { wgInterface } from '../../schema';
|
|
|
|
export const prometheus = sqliteTable('prometheus_table', {
|
|
id: text()
|
|
.primaryKey()
|
|
.references(() => wgInterface.name, {
|
|
onDelete: 'cascade',
|
|
onUpdate: 'cascade',
|
|
}),
|
|
password: text().notNull(),
|
|
createdAt: text('created_at')
|
|
.notNull()
|
|
.default(sql`(CURRENT_TIMESTAMP)`),
|
|
updatedAt: text('updated_at')
|
|
.notNull()
|
|
.default(sql`(CURRENT_TIMESTAMP)`)
|
|
.$onUpdate(() => sql`(CURRENT_TIMESTAMP)`),
|
|
});
|
|
|