Correction de bugs dans le schema mysql

- users/name type de int a varchar
	- valeurs par defaut ajoutees pour entries/is_read et is_fav
This commit is contained in:
Pierre 2014-01-07 22:55:48 +01:00
parent b4b22940df
commit 9ffce01e0c

View file

@ -9,8 +9,8 @@ CREATE TABLE IF NOT EXISTS `entries` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`url` varchar(255) NOT NULL,
`is_read` tinyint(1) NOT NULL,
`is_fav` tinyint(1) NOT NULL,
`is_read` tinyint(1) NOT NULL DEFAULT 0,
`is_fav` tinyint(1) NOT NULL DEFAULT 0,
`content` blob NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
`name` int(255) NOT NULL,
`name` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;