Files
hospital-server/migrations/20251114144629_db.up.sql
2025-11-18 18:26:20 +03:00

8 lines
146 B
SQL

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