Init applications

This commit is contained in:
NVWA Bot
2026-01-05 06:17:07 +00:00
commit b3dbfc86d3
193 changed files with 35016 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { pgTable, text, varchar } from "drizzle-orm/pg-core";
import { createdAt, id, updatedAt } from "../common";
export const attributeFile = pgTable("nvwa_attribute_file", {
id,
name: varchar("name", { length: 255 }).notNull(),
type: varchar("type", { length: 255 }).notNull(),
description: text("description"),
url: varchar("url", { length: 255 }),
createdAt,
updatedAt,
});