Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
auxlife authored Dec 31, 2016
1 parent e0b6c57 commit 9b37ab7
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions TideSync.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
CREATE TABLE `Data` (
`Added` datetime DEFAULT NULL,
`DateString` varchar(30) NOT NULL,
`Type` varchar(15) NOT NULL,
`Value` int(11) NOT NULL,
`Payload` varchar(600) NOT NULL,
`Uploaded` datetime DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;


ALTER TABLE `Data`
ADD PRIMARY KEY (`Payload`),
ADD UNIQUE KEY `Payload` (`Payload`);

0 comments on commit 9b37ab7

Please sign in to comment.