Skip to content

Commit

Permalink
sql updated for 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Rishi Vishwakarma committed Nov 26, 2015
1 parent 92cce90 commit 455b995
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion db.sql
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
CREATE TABLE `upload` ( `id` INT(11) NOT NULL AUTO_INCREMENT , `name` VARCHAR(200) NOT NULL , `path` VARCHAR(500) NOT NULL , `time` TIMESTAMP NOT NULL , PRIMARY KEY (`id`)) ENGINE = InnoDB;
CREATE TABLE `uploads` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`filename` varchar(255) NOT NULL,
`path` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

0 comments on commit 455b995

Please sign in to comment.