Created
December 10, 2012 17:29
-
-
Save thePunderWoman/4252007 to your computer and use it in GitHub Desktop.
Landing Page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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