12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?xml version="1.0" encoding="UTF-8"?>
- <doc>
- <item>
- <ksql>
- update T_BAS_Message set FIsImportant = 1 where FIsImportant is null
- </ksql>
- <bizType>WF</bizType>
- <description>为消息表新增字段设置默认值</description>
- </item>
- <item>
- <ksql>
- update T_PM_User set FIsSynToCloud =0 where FIsSynToCloud is null
- </ksql>
- <bizType>USER</bizType>
- <description>为用户表新增字段设置默认值</description>
- </item>
- <item>
- <ksql>
- update T_PM_User set FIsActivate = 0 where FIsActivate is null
- </ksql>
- <bizType>USER</bizType>
- <description>为用户表新增字段设置默认值</description>
- </item>
- <item>
- <ksql>
- update T_PM_User set FUid ='' where FUid is null
- </ksql>
- <bizType>USER</bizType>
- <description>为用户表新增字段设置默认值</description>
- </item>
- <item>
- <ksql>
- update T_PM_PermItem set FIsUserDefined =0 where FIsUserDefined is null
- </ksql>
- <bizType>BASE</bizType>
- <description>为权限项新增字段设置默认值</description>
- </item>
- </doc>
|