diff options
| author | lucashemi <lucasxberger@gmail.com> | 2023-02-08 14:57:43 -0300 |
|---|---|---|
| committer | lucashemi <lucasxberger@gmail.com> | 2023-02-08 14:57:43 -0300 |
| commit | 514f2e7194a875cfc53d7e1bccd922db2bbb3f3f (patch) | |
| tree | 6b62dada02b9d02e624c40b7f3d4704537cbcb80 /api/src/main/resources/db/migration/V4__alter-table-doctors-add-column-active.sql | |
readme
Diffstat (limited to 'api/src/main/resources/db/migration/V4__alter-table-doctors-add-column-active.sql')
| -rw-r--r-- | api/src/main/resources/db/migration/V4__alter-table-doctors-add-column-active.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/api/src/main/resources/db/migration/V4__alter-table-doctors-add-column-active.sql b/api/src/main/resources/db/migration/V4__alter-table-doctors-add-column-active.sql new file mode 100644 index 0000000..bdbfa76 --- /dev/null +++ b/api/src/main/resources/db/migration/V4__alter-table-doctors-add-column-active.sql @@ -0,0 +1,2 @@ +alter table doctors add active tinyint; +update doctors set active = 1;
\ No newline at end of file |
