feat: Upgrade to Astro with full PDPA compliance
PDPA Features: ✅ Cookie consent banner ✅ Consent logging API ✅ Admin dashboard ✅ Privacy Policy ✅ Terms & Conditions Technical: ✅ Astro 5.x + Tailwind v4 ✅ Docker on port 80 ✅ SQLite database ✅ 15 pages built Ready for Easypanel deployment.
This commit is contained in:
25
node_modules/drizzle-orm/gel-core/unique-constraint.d.ts
generated
vendored
Normal file
25
node_modules/drizzle-orm/gel-core/unique-constraint.d.ts
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
import { entityKind } from "../entity.js";
|
||||
import type { GelColumn } from "./columns/index.js";
|
||||
import type { GelTable } from "./table.js";
|
||||
export declare function unique(name?: string): UniqueOnConstraintBuilder;
|
||||
export declare function uniqueKeyName(table: GelTable, columns: string[]): string;
|
||||
export declare class UniqueConstraintBuilder {
|
||||
private name?;
|
||||
static readonly [entityKind]: string;
|
||||
constructor(columns: GelColumn[], name?: string | undefined);
|
||||
nullsNotDistinct(): this;
|
||||
}
|
||||
export declare class UniqueOnConstraintBuilder {
|
||||
static readonly [entityKind]: string;
|
||||
constructor(name?: string);
|
||||
on(...columns: [GelColumn, ...GelColumn[]]): UniqueConstraintBuilder;
|
||||
}
|
||||
export declare class UniqueConstraint {
|
||||
readonly table: GelTable;
|
||||
static readonly [entityKind]: string;
|
||||
readonly columns: GelColumn[];
|
||||
readonly name?: string;
|
||||
readonly nullsNotDistinct: boolean;
|
||||
constructor(table: GelTable, columns: GelColumn[], nullsNotDistinct: boolean, name?: string);
|
||||
getName(): string | undefined;
|
||||
}
|
||||
Reference in New Issue
Block a user