Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add table users_attributes to sql file
  • Loading branch information
tfotis committed Apr 25, 2012
1 parent 2580c0e commit 98b7e0b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/installation.sql
Expand Up @@ -1165,6 +1165,19 @@ INSERT INTO `users` (`uid`, `uname`, `email`, `pass`, `passreminder`, `activated

-- --------------------------------------------------------

--
-- Table structure for table `users_attributes`
--

DROP TABLE IF EXISTS `users_attributes`;
CREATE TABLE IF NOT EXISTS `users_attributes` (
`user_id` int(11) NOT NULL,
`name` varchar(80) NOT NULL,
`value` longtext NOT NULL,
PRIMARY KEY (`user_id`,`name`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Table structure for table `users_verifychg`
--
Expand Down

0 comments on commit 98b7e0b

Please sign in to comment.