summaryrefslogtreecommitdiff
path: root/api/src/main/resources/db/migration/V4__alter-table-doctors-add-column-active.sql
blob: bdbfa76f53ccd9da634012d878cf0331aced7b7e (plain)
1
2
alter table doctors add active tinyint;
update doctors set active = 1;