diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-06-13 14:19:00 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-06-13 14:19:00 +0100 |
commit | 3c24ff42bef05618ff19c8f60718e5793712ba39 (patch) | |
tree | c476d05760ea2d9e7fdd805f7bf73db361a84776 | |
parent | Single implementation for getting MySQL test connection details (diff) | |
download | mygrate-3c24ff42bef05618ff19c8f60718e5793712ba39.tar.bz2 mygrate-3c24ff42bef05618ff19c8f60718e5793712ba39.tar.xz mygrate-3c24ff42bef05618ff19c8f60718e5793712ba39.zip |
Add missing database field in source config table
-rw-r--r-- | db/schema.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/db/schema.sql b/db/schema.sql index 667fc48..11b8259 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -37,6 +37,7 @@ CREATE TABLE mygrate.source ( username text NOT NULL, password text NOT NULL, port integer NOT NULL, + database text NOT NULL, filename text NOT NULL, "position" bigint NOT NULL, serverid integer NOT NULL, |