Skip to content
Snippets Groups Projects
Commit 9b0bf8a9 authored by Glenn Proctor's avatar Glenn Proctor
Browse files

Added PRIMARY_DB_SYN to list of types in external_db.

parent ced98442
No related branches found
No related tags found
No related merge requests found
# patch_43_44_f
#
# title: Add PRIMARY_DB_SYN to type
#
# description:
# Add an extra value to the type ENUM for external_db
ALTER TABLE external_db CHANGE COLUMN type type ENUM('ARRAY', 'ALT_TRANS', 'MISC', 'LIT', 'PRIMARY_DB_SYNONYM');
# patch identifier
INSERT INTO meta (meta_key, meta_value) VALUES ('patch', 'patch_43_44_d.sql|external_db_type_syn');
......@@ -792,7 +792,7 @@ CREATE TABLE external_db (
display_label_linkable BOOLEAN DEFAULT 0 NOT NULL,
priority INT NOT NULL,
db_display_name VARCHAR(255),
type ENUM('ARRAY', 'ALT_TRANS', 'MISC', 'LIT'),
type ENUM('ARRAY', 'ALT_TRANS', 'MISC', 'LIT', 'PRIMARY_DB_SYN'),
PRIMARY KEY (external_db_id)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment