Tagged Questions

5
votes
2answers
173 views

Putting update logic in your migrations

A couple of times I've been in the situation where I've wanted to refactor the design of some model and have ended up putting update logic in migrations. However, as far as I've understood, this is ...
5
votes
4answers
4k views

varchar Migration question for Ruby on Rails

I have created a new table including a column "note". The default is varchar(255) I believe but I wish to have this column be a text area vs. a field and to allow more data. I imagine that I would ...
4
votes
1answer
87 views

How to recognize migration direction (up or down) with Rails 3 style migrations (def change)?

I really like the Rails 3 style migrations, i.e. one change method being smart enough to recognize if the migrations is being installed or rolled back, so I don't have to write up and down methods ...
3
votes
1answer
29 views

what would cause migrations to do nothing except keep the correct version?

I have an app that I was first writing in rails 3.1 but in an effort to reduce my slug size on heroku I generated a new rails 3.0.9 app and manually moved over the necessary code (or so I thought). ...
3
votes
4answers
508 views

Managing Rails Migrations for different branches on the same machine

I'm a one-man-band at the company I work for. I develop a Rails application for internal use within the company. Since the beginning of the project I have used SVN for source control and done most, ...
1
vote
3answers
91 views

Rails migrations - look for changes in old migrations?

If I have two migrations, mig1 and mig2, I run rake db:migrate, then I go back to mig1 and change the default value of a column, will this change be reflected when I run rake db:migrate again? Or do I ...
1
vote
2answers
80 views

Rolling up Migrations?

As I understand it the point of migrations is so you can revert the database back to a known state during the last stages of development. Right now I'm still "fleshing" out my first Rails app and I'm ...
1
vote
2answers
2k views

Shortcut for rake db:migrate:down for ruby-on-rails

I want to know if there is a short way to do the migrations down equivalent to rake db:migrate (for the migrations up). Instead of doing : rake db:migrate:up VERSION=1, rake db:migrate:up VERSION=2, ...
0
votes
1answer
44 views

Rails 3 - DB seed data validation

I am seeding a test database in Rails 3.1 through thousands of create calls in the seeds.rb file. A little problem arises when these calls do not pass the model validations: rails will not notify me ...
0
votes
2answers
40 views

Rails migrations after database reset

Hi I have a general migration problem: When I create migrations like this: class RenameColumn < ActiveRecord::Migration def change rename_column :users, :hotel_stars, :rating_stars ...
0
votes
0answers
87 views

Adding initial Data to Database in Rails 3.1.3 doesnt work with Rake Tasks (Bootstrap) nor Rake Migration [closed]

Trying to follow this Help ( How (and whether) to populate rails application with initial data ) with Rake Boostrap Tasks, i got this Error: name@CURIUM ~/Documents/developing/rubyonrails/checklist ...
0
votes
1answer
184 views

rollback failed for rails migration

I made a mistake in editing a rails migration (I'm using rails 3.1.0rc5). So I corrected it and attempted to do a rake db:rollback followed by a rake db:migrate db:test:prepare. But the rollback ...
0
votes
1answer
122 views

Ruby on Rails - Problem ActiveRecord, Migrations and two columns to same table

Okay so what I have is a table that keeps track of history on a "person", this logs the person(User), the handler(User), the status before(JobApplicationStatus), the status ...
0
votes
1answer
195 views

Create migration from application

I want to create migrations to add columns from my rails application (not through rails g migration xxxx), while creating the migration I want to store the version number to the for the migration for ...
0
votes
1answer
55 views

How to perform 'move field' refactoring on active-record models

This is a fairly common refactoring, Martin Fowler calls it 'move field'. Given 3 models: class Person < ActiveRecord::Base has_one :contact_details has_one :address end class ContactDetails ...