X-Git-Url: http://wagnertech.de/git?p=kivitendo-erp.git;a=blobdiff_plain;f=sql%2FPg-upgrade2%2Ffile_storage_type_letter.sql;fp=sql%2FPg-upgrade2%2Ffile_storage_type_letter.sql;h=cf4c832bd040f05f9e567beb312d28141dff6128;hp=0000000000000000000000000000000000000000;hb=53593baa211863fbf66540cf1bcc36c8fb37257f;hpb=deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44 diff --git a/sql/Pg-upgrade2/file_storage_type_letter.sql b/sql/Pg-upgrade2/file_storage_type_letter.sql new file mode 100644 index 000000000..cf4c832bd --- /dev/null +++ b/sql/Pg-upgrade2/file_storage_type_letter.sql @@ -0,0 +1,16 @@ +-- @tag: file_storage_type_letter +-- @description: Letter als valid_type für Filemanagement +-- @depends: shopimages + +ALTER TABLE files + DROP CONSTRAINT valid_type; +ALTER TABLE files + ADD CONSTRAINT valid_type CHECK ( + (object_type = 'credit_note' ) OR (object_type = 'invoice' ) OR (object_type = 'sales_order' ) + OR (object_type = 'sales_quotation' ) OR (object_type = 'sales_delivery_order' ) OR (object_type = 'request_quotation' ) + OR (object_type = 'purchase_order' ) OR (object_type = 'purchase_delivery_order' ) OR (object_type = 'purchase_invoice' ) + OR (object_type = 'vendor' ) OR (object_type = 'customer' ) OR (object_type = 'part' ) + OR (object_type = 'gl_transaction' ) OR (object_type = 'dunning' ) OR (object_type = 'dunning1' ) + OR (object_type = 'dunning2' ) OR (object_type = 'dunning3' ) OR (object_type = 'draft' ) + OR (object_type = 'statement' ) OR (object_type = 'shop_image' ) OR (object_type = 'letter' ) + );