mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2026-02-04 19:49:49 +08:00
【新增】增加表【CoreCmsAppUpdateLog】版本更新表,用于发布版本更新。
【新增】增加安卓app版本在线更新功能。 【优化】优化app端头部导航按钮错位的问题。
This commit is contained in:
BIN
数据库/SqlServer/20220720/20220720完整数据库带演示商品.rar
Normal file
BIN
数据库/SqlServer/20220720/20220720完整数据库带演示商品.rar
Normal file
Binary file not shown.
51
数据库/SqlServer/20220720/升级脚本/1、创建表脚本.sql
Normal file
51
数据库/SqlServer/20220720/升级脚本/1、创建表脚本.sql
Normal file
@@ -0,0 +1,51 @@
|
||||
|
||||
/****** Object: Table [dbo].[CoreCmsAppUpdateLog] Script Date: 2022/7/20 1:02:59 ******/
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
|
||||
SET QUOTED_IDENTIFIER ON
|
||||
GO
|
||||
|
||||
CREATE TABLE [dbo].[CoreCmsAppUpdateLog](
|
||||
[id] [INT] IDENTITY(1,1) NOT NULL,
|
||||
[version] [INT] NOT NULL,
|
||||
[note] [NVARCHAR](255) NOT NULL,
|
||||
[android] [NVARCHAR](255) NULL,
|
||||
[ios] [NVARCHAR](255) NULL,
|
||||
[addTime] [DATETIME] NOT NULL,
|
||||
[isUpdate] [BIT] NOT NULL,
|
||||
CONSTRAINT [PK_CoreCmsAppUpdateLog] PRIMARY KEY CLUSTERED
|
||||
(
|
||||
[id] ASC
|
||||
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
|
||||
) ON [PRIMARY]
|
||||
GO
|
||||
|
||||
ALTER TABLE [dbo].[CoreCmsAppUpdateLog] ADD CONSTRAINT [DF_CoreCmsAppUpdateLog_addTime] DEFAULT (GETDATE()) FOR [addTime]
|
||||
GO
|
||||
|
||||
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'<EFBFBD><EFBFBD><EFBFBD><EFBFBD>' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CoreCmsAppUpdateLog', @level2type=N'COLUMN',@level2name=N'id'
|
||||
GO
|
||||
|
||||
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'<EFBFBD>汾<EFBFBD><EFBFBD>' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CoreCmsAppUpdateLog', @level2type=N'COLUMN',@level2name=N'version'
|
||||
GO
|
||||
|
||||
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CoreCmsAppUpdateLog', @level2type=N'COLUMN',@level2name=N'note'
|
||||
GO
|
||||
|
||||
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ַ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CoreCmsAppUpdateLog', @level2type=N'COLUMN',@level2name=N'android'
|
||||
GO
|
||||
|
||||
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'IOS<EFBFBD><EFBFBD>ַ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CoreCmsAppUpdateLog', @level2type=N'COLUMN',@level2name=N'ios'
|
||||
GO
|
||||
|
||||
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD>' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CoreCmsAppUpdateLog', @level2type=N'COLUMN',@level2name=N'addTime'
|
||||
GO
|
||||
|
||||
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CoreCmsAppUpdateLog', @level2type=N'COLUMN',@level2name=N'isUpdate'
|
||||
GO
|
||||
|
||||
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'<EFBFBD>汾<EFBFBD><EFBFBD><EFBFBD>±<EFBFBD>' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CoreCmsAppUpdateLog'
|
||||
GO
|
||||
|
||||
|
||||
BIN
数据库/SqlServer/20220720/升级脚本/2、添加后台菜单链接数据.sql
Normal file
BIN
数据库/SqlServer/20220720/升级脚本/2、添加后台菜单链接数据.sql
Normal file
Binary file not shown.
@@ -1,3 +1,6 @@
|
||||
2022-07-20
|
||||
【新增】新增表【CoreCmsAppUpdateLog】版本更新表,用于启动安卓app获取对应更新
|
||||
|
||||
2022-07-15
|
||||
【新增】表【CoreCmsGoods】增加【initialSales】初始销量字段,用于展示友好销量
|
||||
|
||||
|
||||
Reference in New Issue
Block a user