1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-08-04 20:55:19 +02:00

chore: Add created_at field to Adventure and Collection models

This commit is contained in:
Sean Morley 2024-07-18 15:48:14 -04:00
parent 040d5a755f
commit 704eb6f6de
6 changed files with 87 additions and 4 deletions

View file

@ -25,6 +25,7 @@ export type Adventure = {
latitude: number | null;
longitude: number | null;
is_public: boolean;
created_at?: string;
};
export type Country = {
@ -61,6 +62,7 @@ export type Collection = {
description: string;
is_public: boolean;
adventures: Adventure[];
created_at?: string;
};
export type OpenStreetMapPlace = {