Rakesh Malhotra <rails-mailing-list@...> writes:
When I do rake migrate only two tables get created on my persoal
oracle
database. Rest of them do not get created. I see schema.rb in db directory and I can only see 2 tables created.
Are these in one migration or multiple migrations?
There were no error messages when you ran the Rake task?
Run rake migrate --trace; that might give you a more detailed view of what's going on.
BTW, I always run my migrations inside a transaction, so either it all works or nothing gets saved: def self.up ActiveRecord::Base.transaction do .. migration stuff here end end