Skip to content

Commit

Permalink
Montag 23:00
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Hornburger committed Nov 13, 2023
1 parent a347bbb commit e1a6f7a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/datenstrukturen/standortestruktur_server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ interface IStandortestruktur {
Deleted: boolean;
Zeitstempel: number;
Zeitpunkt: string;
Land: string;
Bundesland: string;
Konfession: string;
Filtered?: boolean;
Text_A?: string;
Text_B?: string;
Expand All @@ -24,6 +27,9 @@ const Standorteshema = new mongoose.Schema({

Standort: {type: String, required: false, index: true},
Kuerzel: {type: String, required: false},
Land: {type: String, required: false},
Bundesland: {type: String, required: false},
Konfession: {type: String, required: false},
Strasse: {type: String, required: false},
PLZ: {type: String, required: false},
Ort: {type: String, required: false},
Expand Down

0 comments on commit e1a6f7a

Please sign in to comment.