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:
parent
040d5a755f
commit
704eb6f6de
6 changed files with 87 additions and 4 deletions
|
@ -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 = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue