UserBillPayments

mail@pastecode.io avatar
unknown
sqlserver
2 years ago
711 B
2
Indexable
```sql
-- MHPQ_DEV.dbo.UserBillPayments definition

-- Drop table

-- DROP TABLE MHPQ_DEV.dbo.UserBillPayments;

CREATE TABLE MHPQ_DEV.dbo.UserBillPayments (
	Id bigint NOT NULL,
	Title nvarchar(500) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
	[Method] int NULL,
	UserBillIds varchar(MAX) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
	Properties nvarchar(MAX) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
	TenantId int NULL,
	CreationTime datetime2(0) NULL,
	CreatorUserId bigint NULL,
	LastModificationTime datetime2(0) NULL,
	LastModifierUserId bigint NULL,
	IsDeleted bit NULL,
	DeleterUserId bigint NULL,
	DeletionTime datetime2(0) NULL,
	Status int NULL,
	CONSTRAINT UserBillPayments_PK PRIMARY KEY (Id)
);
```