feat(database): Improve database definition to add sizes

This commit is contained in:
Michel Fedde 2025-06-22 16:43:30 +02:00
parent ec0aa5654c
commit a3c1bae6db
6 changed files with 38 additions and 30 deletions

View file

@ -5,6 +5,7 @@ export type DatabaseColumnDefinition = {
autoIncrement?: boolean;
notNull?: boolean;
options?: string;
size?: number;
}
export type DatabaseDefinition = {