Displaying 5 results from an estimated 5 matches for "verbose_migr".
2005 Dec 27
1
Debugging Migrations
I''m having a heck of a time trying to debug issues in my migrations.
First, is there a good way to do this? Second, is there a way to get any
output to test it?
_______________________
Brad Eck
_______________________________________________
Rails mailing list
Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
http://lists.rubyonrails.org/mailman/listinfo/rails
2006 Apr 06
2
Strange Error at the end of a succesful Migration
HI all,
I''ve got a migration that creates a few new tables and populates a bunch of
data into those tables from existing models.
It works great. As expected. Tables are created. Relationships are made.
Everything comes out fine as far as the data goes.
But for some reason the migration task ends with this error:
rake aborted!
negative argument
I''ve liberally sprinkled my
2006 Jan 30
5
Problems migrating from Postgres to MySQL
Hello everyone,
I''m trying to migrate a working app from Postgres to MySQL, and I''m
trying to use a migration to get it done rather than alter all my
database table creation scripts to MySQL syntax. I''ve done loads of
work with Postgres, but am a real newbie with MySQL...
I did a ''rake db_schema_dump'' from my Postgres app, and got a nice
looking
2006 Mar 01
5
single transaction migrations
Hi!
It seems that migration doesn''t use single transcation to execute the
needed migrations for the database upgrade, so if I have database at
version 5, and I wrote some migrations 6..10, and error occurs while
executing migration 7, the database stays in state 6?
I also think that migration taks could use some more verbosity, for
example if migration fails, there''s no
2006 Feb 16
9
rake migrate HANGS
I have been attempting to use migrations as a build a poll app.
I have created the initial file:
-----------------
class CreateTablePollsAndPollOptions < ActiveRecord::Migration
def self.up
create_table polls do |table|
table.column ''question'', :string
table.column ''user_id'', :integer
table.column ''start_time'',