spec/fixtures/users.ddl in lhm-2.1.0 vs spec/fixtures/users.ddl in lhm-2.2.0
- old
+ new
@@ -1,9 +1,9 @@
CREATE TABLE `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`reference` int(11) DEFAULT NULL,
`username` varchar(255) DEFAULT NULL,
- `group` varchar(255) DEFAULT NULL,
+ `group` varchar(255) DEFAULT 'Superfriends',
`created_at` datetime DEFAULT NULL,
`comment` varchar(20) DEFAULT NULL,
`description` text,
PRIMARY KEY (`id`),
UNIQUE KEY `index_users_on_reference` (`reference`),