__PACKAGE__->table('users'); __PACKAGE__->add_columns( qw/ userid username password create_date last_here email notes_are_private / ); __PACKAGE__->set_primary_key('userid'); __PACKAGE__->has_many( notes => 'Notes::DBI::Notes'); 1;