Files
online-energieausweis/surreal/Bild.sql
2025-04-21 12:58:39 -03:00

11 lines
444 B
SQL

DEFINE TABLE Bild SCHEMAFULL;
DEFINE FIELD name ON TABLE Bild TYPE string;
DEFINE FIELD mime ON TABLE Bild TYPE string;
DEFINE FIELD kategorie ON TABLE Bild TYPE "Heizung" | "Fenster" | "Gebaeude" | "Daemmung" | "AnlagenTechnik";
DEFINE FIELD created_at ON TABLE Bild TYPE datetime DEFAULT time::now();
DEFINE FIELD updated_at ON TABLE Bild TYPE datetime VALUE time::now();
DEFINE FIELD aufnahme ON TABLE Bild TYPE option<record<Aufnahme>>;