修改sys_file表 id为bigint类型移除自增改用雪花id

This commit is contained in:
不做码农
2022-03-10 21:33:14 +08:00
parent a605e704e9
commit 3555833ae7
2 changed files with 3 additions and 3 deletions

View File

@@ -745,7 +745,7 @@ IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[sy
GO
CREATE TABLE [dbo].[sys_file](
[id] [BIGINT] IDENTITY(1,1) NOT NULL PRIMARY KEY,
[id] [BIGINT] NOT NULL PRIMARY KEY,
[realName] VARCHAR(50) NULL,
[fileName] [VARCHAR](20) NULL,
[fileUrl] [VARCHAR](500) NULL,