Microsoft Sql table press release

MySQL Server -- Posted on Oct. 24, 2020

Microsoft SQL table press release create

              
                CREATE TABLE PressReleases (
    Id int IDENTITY(1,1) not null,
    [Order] int not null default 0,
    CreatedAt datetime not null DEFAULT GETDATE(),
    UpdatedAt datetime not null DEFAULT GETDATE(),
    Published bit not null default 0,
    Deleted bit not null default 0,
    Title nvarchar(max) NOT NULL,
    Description nvarchar(max) NOT NULL,
    CONSTRAINT PK_PressReleases_Id PRIMARY KEY CLUSTERED (Id),
);
                  
   
            

Related Posts