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.

38 lines
982 B

  1. USE [OPMS_Online]
  2. GO
  3. /****** Object: Table [dbo].[[OTB_FNC_AccountingSubjects]] Script Date: 2017/7/24 下午 03:08:10 ******/
  4. SET ANSI_NULLS ON
  5. GO
  6. SET QUOTED_IDENTIFIER ON
  7. GO
  8. SET ANSI_PADDING ON
  9. GO
  10. Drop Table [dbo].[OTB_FNC_AccountingSubjects]
  11. CREATE TABLE [dbo].[OTB_FNC_AccountingSubjects](
  12. [AccountingBookID] [varchar](20) NOT NULL,
  13. [AccountingSubID] [varchar](50) NOT NULL,
  14. [AccountingClass] [varchar](10) NULL,
  15. [DCClass] [varchar](10) NULL,
  16. [AccountingSubName] [varchar](50) NULL,
  17. [ToCarry] [char](1) Null,
  18. [CreateDate] [datetime] NULL,
  19. [CreateUser] [varchar](50) NULL,
  20. [ModifyDate] [datetime] NULL,
  21. [ModifyUser] [varchar](50) NULL,
  22. [Memo] [varchar](200) NULL,
  23. CONSTRAINT [PK_OTB_FNC_AccountSubjects] PRIMARY KEY CLUSTERED
  24. (
  25. [AccountingBookID] ASC,
  26. [AccountingSubID] ASC
  27. )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
  28. ) ON [PRIMARY]
  29. GO
  30. SET ANSI_PADDING OFF
  31. GO