mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-01-24 10:39:08 -06:00
This is only to avoid accidentally leaking any secrets from early development especially in the light of short-sha attacks.
6 lines
634 B
TypeScript
6 lines
634 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { GeneratedExpressionMode } from "./GeneratedExpressionMode";
|
|
import type { ReferentialAction } from "./ReferentialAction";
|
|
|
|
export type ColumnOption = "Null" | "NotNull" | { "Default": string } | { "Unique": { is_primary: boolean, } } | { "ForeignKey": { foreign_table: string, referred_columns: Array<string>, on_delete: ReferentialAction | null, on_update: ReferentialAction | null, } } | { "Check": string } | { "OnUpdate": string } | { "Generated": { expr: string, mode: GeneratedExpressionMode | null, } };
|