| 1 | ################################################################################ |
1 | ################################################################################ |
| 2 | # WeBWorK Online Homework Delivery System |
2 | # WeBWorK Online Homework Delivery System |
| 3 | # Copyright © 2000-2003 The WeBWorK Project, http://openwebwork.sf.net/ |
3 | # Copyright © 2000-2003 The WeBWorK Project, http://openwebwork.sf.net/ |
| 4 | # $CVSHeader: webwork-modperl/lib/WeBWorK/DB/Record/Password.pm,v 1.4 2003/12/09 01:12:32 sh002i Exp $ |
4 | # $CVSHeader: webwork-modperl/lib/WeBWorK/DB/Record/Password.pm,v 1.5 2005/03/29 21:23:34 jj Exp $ |
| 5 | # |
5 | # |
| 6 | # This program is free software; you can redistribute it and/or modify it under |
6 | # This program is free software; you can redistribute it and/or modify it under |
| 7 | # the terms of either: (a) the GNU General Public License as published by the |
7 | # the terms of either: (a) the GNU General Public License as published by the |
| 8 | # Free Software Foundation; either version 2, or (at your option) any later |
8 | # Free Software Foundation; either version 2, or (at your option) any later |
| 9 | # version, or (b) the "Artistic License" which comes with this package. |
9 | # version, or (b) the "Artistic License" which comes with this package. |
| … | |
… | |
| 37 | sub FIELDS {qw( |
37 | sub FIELDS {qw( |
| 38 | user_id |
38 | user_id |
| 39 | password |
39 | password |
| 40 | )} |
40 | )} |
| 41 | |
41 | |
| 42 | sub SQL_TYPE {qw( |
42 | sub SQL_TYPES {qw( |
| 43 | BLOB |
43 | BLOB |
| 44 | TEXT |
44 | TEXT |
| 45 | )} |
45 | )} |
| 46 | |
46 | |
| 47 | 1; |
47 | 1; |