Merge pull request #58 from MrPetovan/bug/47-drop-server-path-field

[Database v0006] Drop unused server.path field
This commit is contained in:
Michael Vogel 2020-09-26 23:11:16 +02:00 committed by GitHub
commit 751a45fd3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,3 @@
BEGIN;
ALTER TABLE `server` ADD `path` varchar(190) NOT NULL DEFAULT '' AFTER `base_url`;
COMMIT;

View File

@ -0,0 +1,3 @@
BEGIN;
ALTER TABLE `server` DROP COLUMN `path`;
COMMIT;