implement basic patients routes

This commit is contained in:
Akhmedov Khadgimurad
2025-11-18 18:26:20 +03:00
parent 8e81b99f63
commit e7f20a4d82
15 changed files with 218 additions and 295 deletions

View File

@ -0,0 +1,3 @@
-- Add migration script here
drop table "patients";

View File

@ -0,0 +1,7 @@
-- Add migration script here
create table "patients" (
"id" INTEGER PRIMARY KEY,
"full_name" TEXT NOT NULL,
"phone" TEXT NOT NULL
);