mirror of
https://gitee.com/jmix/cuba.git
synced 2024-12-04 12:17:41 +08:00
fix typo in ms sql update script #PL-2368
This commit is contained in:
parent
b538c0a1c5
commit
378c48eb6a
@ -1,10 +1,10 @@
|
||||
-- $Id$ --
|
||||
-- Add linking columns from SendingMessage and SendingAttachment to sys$File
|
||||
|
||||
alter table SYS_SENDING_MESSAGE add column CONTENT_TEXT_FILE_ID uniqueidentifier^
|
||||
alter table SYS_SENDING_MESSAGE add CONTENT_TEXT_FILE_ID uniqueidentifier^
|
||||
alter table SYS_SENDING_MESSAGE add constraint FK_SYS_SENDING_MESSAGE_CONTENT_FILE
|
||||
foreign key (CONTENT_TEXT_FILE_ID) references SYS_FILE(ID)^
|
||||
|
||||
alter table SYS_SENDING_ATTACHMENT add column CONTENT_FILE_ID uniqueidentifier^
|
||||
alter table SYS_SENDING_ATTACHMENT add CONTENT_FILE_ID uniqueidentifier^
|
||||
alter table SYS_SENDING_ATTACHMENT add constraint FK_SYS_SENDING_ATTACHMENT_CONTENT_FILE
|
||||
foreign key (CONTENT_FILE_ID) references SYS_FILE (ID)^
|
||||
|
Loading…
Reference in New Issue
Block a user