Add biome
This commit is contained in:
parent
09d25c926c
commit
6479d09196
9 changed files with 586 additions and 538 deletions
|
@ -28,7 +28,7 @@ export const ColumnOf = {
|
|||
type: otherTable.primaryColumnType(),
|
||||
references: otherTable.reference(),
|
||||
nullable: false,
|
||||
cascade
|
||||
cascade,
|
||||
};
|
||||
},
|
||||
|
||||
|
@ -36,7 +36,6 @@ export const ColumnOf = {
|
|||
Text: {
|
||||
type: "TEXT",
|
||||
nullable: true,
|
||||
|
||||
},
|
||||
|
||||
Int: {
|
||||
|
@ -94,7 +93,7 @@ export const ColumnOf = {
|
|||
return {
|
||||
type: "TEXT",
|
||||
default: defaultValue,
|
||||
}
|
||||
};
|
||||
},
|
||||
|
||||
Int(defaultValue: number): ColumnShorthand {
|
||||
|
@ -109,7 +108,6 @@ export const ColumnOf = {
|
|||
type: "REAL",
|
||||
default: defaultValue,
|
||||
} as const;
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
} as const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue