12 """Newly registered users are created here until an administrator
13 confirms their information, upon which they are transferred to
18 'rid': (
'INTEGER PRIMARY KEY',
'NOT NULL',),
22 'email': (
'TEXT',
"NOT NULL DEFAULT ''",),
24 'extrainfo': (
'DICT',
"NOT NULL DEFAULT ''",),
25 'flags': (
'INT',
'NOT NULL DEFAULT 0',),
29 _dbdisplay = [
'place',
'displayname',
'phonenumber']
Base class for all database models.
Throws an exception on blank values.
Newly registered users are created here until an administrator confirms their information,...
def __init__(self)
Initialize all fields at creation like a good programmer should.