Derek Belsham
2006-Jan-10 03:57 UTC
[Rails] the dreaded error Before updating scaffolding from new DB s
Hi I am pretty sure that this is a common nuby problem but I cannot figure it out i try to run scfaoldong and get a error "Before updating scaffolding from new DB schema, try creating a table for your model" I have mysql set up and created the tables etc. Derek -- Posted via http://www.ruby-forum.com/.
Daniel Wright
2006-Jan-10 07:27 UTC
[Rails] the dreaded error Before updating scaffolding from new DB s
Derek Belsham wrote:> Hi > I am pretty sure that this is a common nuby problem but I cannot figure > it out i try to run scfaoldong and get a error "Before updating > scaffolding from new DB schema, try creating a table for your model" > > I have mysql set up and created the tables etc. > > Derek > >Did you define your database connection information in config/database.yml? What is the syntax of your command? Dan
Derek Belsham
2006-Jan-10 16:02 UTC
[Rails] Re: the dreaded error Before updating scaffolding from new D
Daniel Wright wrote:> Derek Belsham wrote: >> Hi >> I am pretty sure that this is a common nuby problem but I cannot figure >> it out i try to run scfaoldong and get a error "Before updating >> scaffolding from new DB schema, try creating a table for your model" >> >> I have mysql set up and created the tables etc. >> >> Derek >> >> > Did you define your database connection information in > config/database.yml? > > What is the syntax of your command? > > DanHere is the config/database.yml # MySQL (default setup). Versions 4.1 and 5.0 are recommended. # # Get the fast C bindings: # gem install mysql # (on OS X: gem install mysql -- --include=/usr/local/lib) # And be sure to use new-style password hashing: # http://dev.mysql.com/doc/refman/5.0/en/old-client.html development: adapter: mysql database: blog_development host: localhost username: derek password: wcug13 # socket: /tmp/mysql.sock # Connect on a TCP socket. If omitted, the adapter will connect on the # domain socket given by socket instead. host: localhost #port: 3306 # Warning: The database defined as ''test'' will be erased and # re-generated from your development database when you run ''rake''. # Do not set this db to the same as development or production. test: adapter: mysql database: blog_test host: localhost username: derek password: wcug13 production: adapter: mysql database: blog_production host: localhost username: derek password: wcug13 -- Posted via http://www.ruby-forum.com/.