Displaying 1 result from an estimated 1 matches for "rolder".
Did you mean:
older
2010 Aug 20
2
The M in ORM
...table, and instead of running db:migrate, I added a
set_table_name to my model.
Of course, I get a bunch of errors whenever I do things like
Product.all, because I think my model''s properties are not properly
mapped to the database table columns. So I began poking around my rails
app rolder and found a file named schema.rb in the "db" folder inside my
app, with content like this:
create_table "users", :force => true do |t|
t.text "username"
t.text "password"
t.text "email"
t.text "real_name&quo...