Add biome

This commit is contained in:
Endeavorance 2025-04-06 19:28:42 -04:00
parent 09d25c926c
commit 6479d09196
9 changed files with 586 additions and 538 deletions

View file

@ -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;