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

Added info_type and info_text columns to xref.

parent a83bf59b
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,15 @@
UPDATE meta set meta_value="38" where meta_key="schema_version";
# add the two new Unmapped Object tables:-
# Add info_type & info_text columns to xref
ALTER TABLE xref ADD COLUMN info_type ENUM('PROJECTION', 'MISC');
ALTER TABLE xref ADD COLUMN info_text VARCHAR(255);
ALTER TABLE xref ADD INDEX info_type_idx (info_type);
# Add the two new Unmapped Object tables:-
################################################################################
......
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