移动系统liao
2024-05-09 5d6cb15ac86d9174393cb9d1538d69b567e2c26c
1
2
3
4
5
6
7
8
9
10
11
12
ALTER TABLE [dbo].[CoreCmsProducts]
ADD [pointsDeduction] DECIMAL(10, 2)
        DEFAULT 0 NOT NULL;
 
EXECUTE sp_addextendedproperty @name = N'MS_Description',
                               @value = N'»ý·Ö¿ÉµÖ¿Û½ð¶î',
                               @level0type = N'SCHEMA',
                               @level0name = N'dbo',
                               @level1type = N'TABLE',
                               @level1name = N'CoreCmsProducts',
                               @level2type = N'COLUMN',
                               @level2name = N'pointsDeduction';