Displaying 1 result from an estimated 1 matches for "user_development".
2009 Jul 21
1
synatx error while running migration
...in my main application using
''ruby script/generate plugin'' command in rails 2.3.0 with engine having
its own separate database define in database.yml of main application
something like this
#database of my main application
development:
adapter: mysql
encoding: utf8
database: user_development
pool: 5
username: root
password: root123
host: localhost
#database of the engine
PMS:
adapter: mysql
database: pms
username: root
password: root123
host: localhost
i have also define the necessary code inside my all engine models and
migration files
like this
code of
project.rb...