frontend tailwind half working without external styling
This commit is contained in:
@@ -1,85 +0,0 @@
|
||||
import { pgTable, text, serial, integer, boolean, date, timestamp, time } from "drizzle-orm/pg-core";
|
||||
import { createInsertSchema } from "drizzle-zod";
|
||||
import { z } from "zod";
|
||||
|
||||
// User schema
|
||||
export const users = pgTable("users", {
|
||||
id: serial("id").primaryKey(),
|
||||
username: text("username").notNull().unique(),
|
||||
password: text("password").notNull(),
|
||||
});
|
||||
|
||||
export const insertUserSchema = createInsertSchema(users).pick({
|
||||
username: true,
|
||||
password: true,
|
||||
});
|
||||
|
||||
export type InsertUser = z.infer<typeof insertUserSchema>;
|
||||
export type User = typeof users.$inferSelect;
|
||||
|
||||
// Patient schema
|
||||
export const patients = pgTable("patients", {
|
||||
id: serial("id").primaryKey(),
|
||||
firstName: text("first_name").notNull(),
|
||||
lastName: text("last_name").notNull(),
|
||||
dateOfBirth: date("date_of_birth").notNull(),
|
||||
gender: text("gender").notNull(),
|
||||
phone: text("phone").notNull(),
|
||||
email: text("email"),
|
||||
address: text("address"),
|
||||
city: text("city"),
|
||||
zipCode: text("zip_code"),
|
||||
insuranceProvider: text("insurance_provider"),
|
||||
insuranceId: text("insurance_id"),
|
||||
groupNumber: text("group_number"),
|
||||
policyHolder: text("policy_holder"),
|
||||
allergies: text("allergies"),
|
||||
medicalConditions: text("medical_conditions"),
|
||||
status: text("status").default("active"),
|
||||
userId: integer("user_id").notNull().references(() => users.id),
|
||||
createdAt: timestamp("created_at").defaultNow(),
|
||||
});
|
||||
|
||||
export const insertPatientSchema = createInsertSchema(patients).omit({
|
||||
id: true,
|
||||
createdAt: true,
|
||||
});
|
||||
|
||||
export const updatePatientSchema = createInsertSchema(patients).omit({
|
||||
id: true,
|
||||
createdAt: true,
|
||||
userId: true,
|
||||
}).partial();
|
||||
|
||||
export type InsertPatient = z.infer<typeof insertPatientSchema>;
|
||||
export type UpdatePatient = z.infer<typeof updatePatientSchema>;
|
||||
export type Patient = typeof patients.$inferSelect;
|
||||
|
||||
// Appointment schema
|
||||
export const appointments = pgTable("appointments", {
|
||||
id: serial("id").primaryKey(),
|
||||
patientId: integer("patient_id").notNull().references(() => patients.id),
|
||||
userId: integer("user_id").notNull().references(() => users.id),
|
||||
title: text("title").notNull(), // Added title field
|
||||
date: date("date").notNull(),
|
||||
startTime: time("start_time").notNull(),
|
||||
endTime: time("end_time").notNull(),
|
||||
type: text("type").notNull(), // e.g., "checkup", "cleaning", "filling", etc.
|
||||
notes: text("notes"),
|
||||
status: text("status").default("scheduled"), // "scheduled", "completed", "cancelled", "no-show"
|
||||
createdAt: timestamp("created_at").defaultNow(),
|
||||
});
|
||||
|
||||
export const insertAppointmentSchema = createInsertSchema(appointments).omit({
|
||||
id: true,
|
||||
createdAt: true,
|
||||
});
|
||||
|
||||
export const updateAppointmentSchema = createInsertSchema(appointments).omit({
|
||||
id: true,
|
||||
createdAt: true,
|
||||
}).partial();
|
||||
|
||||
export type InsertAppointment = z.infer<typeof insertAppointmentSchema>;
|
||||
export type UpdateAppointment = z.infer<typeof updateAppointmentSchema>;
|
||||
export type Appointment = typeof appointments.$inferSelect;
|
||||
Reference in New Issue
Block a user