Skip to content

Instantly share code, notes, and snippets.

@thePunderWoman
Created December 10, 2012 17:29
Show Gist options
  • Save thePunderWoman/4252007 to your computer and use it in GitHub Desktop.
Save thePunderWoman/4252007 to your computer and use it in GitHub Desktop.
Landing Page
CREATE TABLE LandingPage (
id int IDENTITY(1,1) PRIMARY KEY NOT NULL,
websiteID int NOT NULL FOREIGN KEY REFERENCES Website(ID),
startDate datetime NOT NULL,
endDate datetime NOT NULL,
url varchar(255) NOT NULL,
banner varchar(255) NULL,
pageContent text NULL,
buttonClasses varchar(255) NULL,
buttonText varchar(255) NULL,
buttonTop float NOT NULL DEFAULT(0),
buttonLeft float NOT NULL DEFAULT(0),
buttonDataID varchar(255) NULL
)
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment