feat: Added avaliable tags and tag column to table

Coauthored-by: gk1623
This commit is contained in:
Barf-Vader
2025-06-05 17:38:49 +01:00
parent 6e45851892
commit 0e074e9301
2 changed files with 24 additions and 0 deletions

View File

@@ -3,3 +3,25 @@ import type { Database } from "./database.d.ts";
export type Table<T extends keyof Database["public"]["Tables"]> =
Database["public"]["Tables"][T]["Row"];
export type Enum<T extends keyof Database["public"]["Enums"]> = Database["public"]["Enums"][T];
export const availableStudySpaceTags = [
"Quiet",
"Loud",
"Silent",
"Group study",
"Individual study",
"Power outlets",
"No power outlets",
"24/7",
"Food allowed",
"No food allowed",
"Good wifi",
"Bad wifi",
"No wifi",
"Whiteboard",
"Restricted access",
"Hot",
"Air conditioned",
"Cold",
"Cringe"
];