Displaying 1 result from an estimated 1 matches for "e_user_map".
2008 Nov 29
3
Yet another "NameError: uninitialized constant" problem
...-to-many relationship linking "modules"
and "users". There''s 3 tables (I know the names are inconsistent - it''s
a little strange because it was an existing database that I dumped into
rails):
- module: a module definition
- users: the users of the system
- module_user_map: join table linking modules and users
My data model (from schema.rb) looks in part like this:
create_table "module", :force => true do |t|
t.string "name", :default => "", :null => false
t.integer "status", :default => 0, :null =>...