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.

37 lines
1.1 KiB

  1. USE [OPMS_Online]
  2. GO
  3. /****** Object: Table [dbo].[OTB_FNC_AccountingBookInfo] Script Date: 2017/8/10 上午 11:16:07 ******/
  4. SET ANSI_NULLS ON
  5. GO
  6. SET QUOTED_IDENTIFIER ON
  7. GO
  8. SET ANSI_PADDING ON
  9. GO
  10. Drop Table [OTB_FNC_AccountingBookInfo]
  11. CREATE TABLE [dbo].[OTB_FNC_AccountingBookInfo](
  12. [AccountingBookID] [Varchar](20) NOT NULL,
  13. [AccountingBookName] [varchar](50) NOT NULL,
  14. [BelongOrg] [varchar](36) NOT NULL,
  15. [Effective] [char](1) NULL,
  16. [CreateDate] [datetime] NULL,
  17. [CreateUser] [varchar](50) NULL,
  18. [ModifyDate] [datetime] NULL,
  19. [ModifyUser] [varchar](50) NULL,
  20. CONSTRAINT [PK_OTB_FNC_AccountingBookInfo] PRIMARY KEY CLUSTERED
  21. (
  22. [AccountingBookID] ASC
  23. )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
  24. ) ON [PRIMARY]
  25. GO
  26. SET ANSI_PADDING OFF
  27. GO
  28. --
  29. Delete [OTB_FNC_AccountingBookInfo]
  30. Insert Into [dbo].[OTB_FNC_AccountingBookInfo](AccountingBookID,AccountingBookName,BelongOrg,Effective,CreateDate,CreateUser,ModifyDate,ModifyUser) Values ('Origtek','元赫科技','Origtek','Y',Getdate(),'apadmin',Getdate(),'apadmin')