mirror of
https://github.com/soconnor0919/hristudio.git
synced 2026-05-08 05:48:56 -04:00
7c360dc860
- Created migration 0001_seed_data.sql to insert minimal seed data for users, accounts, and roles. - Added meta journal for migration tracking. - Implemented FormBuilder component for dynamic form field creation and management. - Developed FormFieldRenderer component to render various types of form fields based on user input. - Introduced constants for trust levels and status configurations. - Defined types for form fields and trial data structures to enhance type safety and clarity.
14 lines
275 B
TypeScript
Executable File
14 lines
275 B
TypeScript
Executable File
import { type Config } from "drizzle-kit";
|
|
|
|
import { env } from "~/env";
|
|
|
|
export default {
|
|
schema: "./src/server/db/schema.ts",
|
|
dialect: "postgresql",
|
|
dbCredentials: {
|
|
url: env.DATABASE_URL,
|
|
},
|
|
tablesFilter: ["hs_*"],
|
|
out: "./migrations",
|
|
} satisfies Config;
|