Skip to content
Snippets Groups Projects
Commit 50fcf95e authored by SNA's avatar SNA
Browse files

FIX #4973 add column tln_path et tnl_filename to attachments

parent 170b0e4f
No related branches found
No related tags found
No related merge requests found
...@@ -135,6 +135,12 @@ ALTER TABLE mlb_coll_ext ADD COLUMN recommendation_limit_date timestamp without ...@@ -135,6 +135,12 @@ ALTER TABLE mlb_coll_ext ADD COLUMN recommendation_limit_date timestamp without
ALTER TABLE res_attachments DROP COLUMN IF EXISTS effective_date; ALTER TABLE res_attachments DROP COLUMN IF EXISTS effective_date;
ALTER TABLE res_attachments ADD effective_date timestamp without time zone; ALTER TABLE res_attachments ADD effective_date timestamp without time zone;
ALTER TABLE res_attachments DROP COLUMN IF EXISTS tnl_path;
ALTER TABLE res_attachments ADD tnl_path character varying(255);
ALTER TABLE res_attachments DROP COLUMN IF EXISTS tnl_filename;
ALTER TABLE res_attachments ADD tnl_filename character varying(255);
ALTER TABLE res_version_attachments DROP COLUMN IF EXISTS effective_date; ALTER TABLE res_version_attachments DROP COLUMN IF EXISTS effective_date;
ALTER TABLE res_version_attachments ADD effective_date timestamp without time zone; ALTER TABLE res_version_attachments ADD effective_date timestamp without time zone;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment