feat: add new fields to AnnunciTable for disponibile_da, permanenza, and persone
This commit is contained in:
parent
2ef3c38c8a
commit
a7cec21ab6
1 changed files with 6 additions and 0 deletions
|
|
@ -106,6 +106,12 @@ export default interface AnnunciTable {
|
|||
consegna: ColumnType<number | null, number | null, number | null>;
|
||||
|
||||
og_url: ColumnType<string | null, string | null, string | null>;
|
||||
|
||||
disponibile_da: ColumnType<Date | null, Date | string | null, Date | string | null>;
|
||||
|
||||
permanenza: ColumnType<number[] | null, number[] | null, number[] | null>;
|
||||
|
||||
persone: ColumnType<string[] | null, string[] | null, string[] | null>;
|
||||
}
|
||||
|
||||
export type Annunci = Selectable<AnnunciTable>;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue