medication tracking started
This commit is contained in:
@@ -144,6 +144,18 @@ export type VetVisitRow = {
|
||||
notes: string | null;
|
||||
};
|
||||
|
||||
export type MedicationRow = {
|
||||
id: string;
|
||||
bird_id: string;
|
||||
name: string;
|
||||
dosage: string;
|
||||
frequency: string;
|
||||
route: string | null;
|
||||
start_date: string;
|
||||
end_date: string | null;
|
||||
notes: string | null;
|
||||
};
|
||||
|
||||
export type AuthContext = {
|
||||
user: UserRow;
|
||||
session: AuthSessionRow;
|
||||
|
||||
Reference in New Issue
Block a user