Files
hospital-server/migrations/20251114144629_db.up.sql

8 lines
146 B
MySQL
Raw Normal View History

2025-11-18 18:26:20 +03:00
-- Add migration script here
create table "patients" (
"id" INTEGER PRIMARY KEY,
"full_name" TEXT NOT NULL,
"phone" TEXT NOT NULL
);