Adds ICS
This commit is contained in:
parent
441715675c
commit
a79898b2e9
48 changed files with 2062 additions and 1503 deletions
|
|
@ -1,13 +1,13 @@
|
|||
export type DatabaseColumnDefinition = {
|
||||
name: string;
|
||||
type: string;
|
||||
primaryKey?: boolean;
|
||||
autoIncrement?: boolean;
|
||||
notNull?: boolean;
|
||||
options?: string;
|
||||
name: string;
|
||||
type: string;
|
||||
primaryKey?: boolean;
|
||||
autoIncrement?: boolean;
|
||||
notNull?: boolean;
|
||||
options?: string;
|
||||
}
|
||||
|
||||
export type DatabaseDefinition = {
|
||||
name: string;
|
||||
columns: DatabaseColumnDefinition[];
|
||||
name: string;
|
||||
columns: DatabaseColumnDefinition[];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue