Digital Office Automation System Backend
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

update-4.3-4.4.sql 256B

hace 1 día
123456789
  1. ALTER TABLE [sys_oss_config] ADD [access_policy] nchar(1) DEFAULT ('1') NOT NULL
  2. GO
  3. EXEC sp_addextendedproperty
  4. 'MS_Description', N'桶权限类型(0=private 1=public 2=custom)',
  5. 'SCHEMA', N'dbo',
  6. 'TABLE', N'sys_oss_config',
  7. 'COLUMN', N'access_policy'
  8. GO