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),
);