Displaying 2 results from an estimated 2 matches for "foobar_develop".
2006 Aug 03
5
Database configuration across developers!
...ay to put some
of the database configuration information into a separate file? For
instance, in config/database.yml I have:
developer_database: &developer_database
adapter: mysql
username: me
password: something
host: 127.0.0.1
development:
<<: *developer_database
database: foobar_development
test:
<<: *developer_database
database: foobar_test
This was done so that the database names are standardised across
developers but the details of the actual database connection are
modifiable by the developer (another developer will alter *just* the
details in developer_database)....
2006 Mar 24
10
innodb vs myisam
Hi,
I have been using myisam tables in mysql with rails because my client will soon want fulltext searchable content, however when I migrated my development db from schema.rb all of the tables generated were innodb. I understand that I can override this, but also like the transactions and foreign keys of innodb. So 2 questions really:
1. are transactions in activerecord dependent on innodb or do