Finished up tests

This commit is contained in:
Josh Sherman 2014-10-02 20:54:12 -04:00
parent 4167d99623
commit d884f5a3df
4 changed files with 135 additions and 0 deletions

View file

@ -53,3 +53,5 @@ CREATE TABLE `users` (
`is_deleted` tinyint(1) unsigned DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO users (id, username, created_at) VALUES (1000000, 'test', NOW());