Skip to content
This repository has been archived by the owner on Mar 15, 2018. It is now read-only.

Commit

Permalink
move 196 to 197 and add in a couple of test passwords (bug 638345)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy McKay committed May 27, 2011
1 parent 47b71a7 commit ac00aef
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
7 changes: 0 additions & 7 deletions migrations/196-create-blacklisted-password.sql

This file was deleted.

11 changes: 11 additions & 0 deletions migrations/197-create-blacklisted-password.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
CREATE TABLE `users_blacklistedpassword` (
`id` integer AUTO_INCREMENT NOT NULL PRIMARY KEY,
`created` datetime NOT NULL,
`modified` datetime NOT NULL,
`password` varchar(255) NOT NULL UNIQUE
);

INSERT INTO `users_blacklistedpassword` (created, modified, password)
VALUE ('2011-05-27', '2011-05-27', 'password');
INSERT INTO `users_blacklistedpassword` (created, modified, password)
VALUE ('2011-05-27', '2011-05-27', '12345678');

0 comments on commit ac00aef

Please sign in to comment.