Tagged Questions
The rails-migrations tag has no wiki summary.
9
votes
2answers
192 views
Managing mongoid migrations
Can someone give me a short introduction to doing DB migrations in Rails using Mongoid? I'm particularly interested in lazy per document migrations. By this, I mean that whenever you read a document ...
8
votes
3answers
4k views
How to drop columns using Rails migration
What's the syntax for dropping a database table column through a Rails migration?
6
votes
3answers
1k views
Rails : migration for creating a fixed-length char(12) column
What is the best way to define a fixed-length SQL column (CHAR(12) for instance) through a Rails migration ?
Why this should not handled by the model is because of the performance of char() vs ...
5
votes
4answers
204 views
Rails: how to rollback a botched migration
I'm an idiot...screwed up a migration in Rails:
thinking migrations would work like model generators (using references:modelname) I did the following:
$ rails g migration add_event_to_photos ...
5
votes
1answer
159 views
Updating migration timestamps in feature branches
Let's say there's active development in both my main branch (devlop) and my feature branch. Both are adding migrations now and again. Before merging the feature branch into the main branch, I'm going ...
5
votes
1answer
63 views
What is the corresponding rollback?
I have the following ActiveRecord migration:
class CreateSubjects < ActiveRecord::Migration
def self.up
create_table :subjects do |t|
t.string :title
t.timestamps
end
...
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
88 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 ...
4
votes
3answers
103 views
What's a good way to clean up my migrations in Rails?
So I've been working on this web app for a year now and I would like to compile to schema into ONE migration, that way my text editor loads faster, git working directory isn't so cluttered.
Search ...
4
votes
2answers
244 views
How do I move a column (with contents) to another table in a Rails migration?
I need to move some columns from one existing table to another. How do I do it using a rails migration?
class AddPropertyToUser < ActiveRecord::Migration
def self.up
add_column :users, ...
4
votes
3answers
759 views
Rails 3 migrations: boolean (mysql vs postgreSQL)
I'm trying to add a "sticky" option on my forum topics. This is how my migration looks like
def self.up
add_column :topics, :sticky, :boolean, :null => false, :default => false
end
...
4
votes
5answers
802 views
in a rails migration, how can you remove the limit of a field
Is it something like:
change_column :tablename, :fieldname, :limit => null
4
votes
1answer
2k views
When I run the rake:db migrate command I get an error “Uninitialized constant CreateArticles”
I created a model ruby script/generate model Article (simple enuff)
Here is the migration file create_articles.rb:
def self.up
create_table :articles do |t|
t.column :user_id, :integer
...
3
votes
2answers
59 views
From Django to Rails, How do you continually work with rails models?
Recently I converted from django development to fulltime rails work, it is a fairly small shop and I'm picking things up from books and on my own as I go.
Last week I was hit with a major blow to my ...
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
2answers
153 views
heroku rake db:migrate failing - how to diagnose/fix?
heroku rake db:migrate --trace --app app-name
! Internal server error
This was working fine before.
How to diagnose this?
rake db:migrate works fine on my local db. There is no entry in the ...
3
votes
2answers
161 views
Rails 3.1 migrations drops timestamp in migration filenames
I am trying to upgrade an application from Rails 3.0.7 to 3.1.1. When I try to run a migration under 3.1.1, the migration file gets generated but without the leading timestamp. For example:
$ rails g ...
3
votes
1answer
94 views
Will removing a column with a Rails migration remove indexes associated with the column
In Rails 2, will removing a column with a Rails migration also change/remove indexes associated with the column? If not, and instead you have to also change/remove each index manually, shouldn't it ...
3
votes
3answers
261 views
Rails migration error
This seems pretty straight forward but I'm not sure what is going wrong.
I'm attempting to do the following in my Rails migration:
change_column :foo, :bar, :text, :limit => 16777215
I'm ...
3
votes
2answers
221 views
Long-running-to-death migration / find_each
Running Rails 3 with PostgreSQL,
I've a migration, updating millions of small records.
Record.find_each do |r|
r.doing_incredibly_complex_stuff
r.save!
puts "#{r.id} updated"
end
Since I ...
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, ...
2
votes
2answers
185 views
heroku error when i running migration (rails 3.1 cedar stack)
SOLVED: was due to network limitation
I just pushed my app and i need to run my migration files to initialize the database
i get the following error: what should i do ?
EDIT: heroku run bash -app ...
2
votes
3answers
74 views
Can I add comments to a table or column using ActiveRecord Migrations?
In MySQL (and other SQL databases), it can be helpful to add comments to a table or column whose purpose may be unclear. (Search MySQL's create table syntax for "comment" for examples.)
Is there a ...
2
votes
1answer
43 views
Why does rails database id keep counting forward after destroying an intermediate item?
The title might not be so clear, and anyway it's better to just look at this:
My sequence of creating/destroying items A, B and C is:
Create A --> id:1
Create B --> id:2
Destroy B
Create C --> id:3
...
2
votes
2answers
85 views
How to add sequences to a migration and use them in a model?
I want to have a "Customer" Model with a normal primary key and another column to store a custom "Customer Number". In addition, I want the db to handle default Customer Numbers. I think, defining a ...
2
votes
2answers
68 views
Why can't I create an array as a column in a table in Rails?
Why can't I do something like this:
class CreateModels < ActiveRecord::Migration
def self.up
create_table :fruit do |t|
t.array :apples
end
end
end
Is there some other way to ...
2
votes
1answer
141 views
What can cause db:rollback to fail?
I'm trying to rollback my rails3 database (postgresql) a few steps to make some changes.
I added a migration file today. rake db:rollback successfully rolled back.
I'm now trying to go back further, ...
2
votes
1answer
517 views
how to generate migration to make references polymorphic
I have a Products table and want to add a column:
t.references :imageable, :polymorphic => true
I was trying to generate migration for this by doing:
$ rails generate migration ...
2
votes
0answers
245 views
ActiveRecord Migrations with UUID primary key
In the migration that I want to create, the primary key of the table is a field called "id" but it is not an auto-incrementing integer. It's datatype should be uniqueidentifier (a uuid). Here is ...
2
votes
2answers
215 views
How to generate Rails Migration class automatically from MYSQL database instance?
I have database scripts which create database with more than 100 tables and lot of data. It is a tedious task for me to create Rails Migration classes for whole database. But i see Rails Migration as ...
2
votes
1answer
510 views
Create multi column distinct index using mysql with rails migration
Trying to execute this statement in a rails migration to generate a multi column unique constraint/index:
add_index :contributors, [:project_id, :user_id], :unique=>true
I've also tried ...
2
votes
1answer
591 views
How to do database migration Rails3 + datamapper
I used dm-rails gem that allows datamapper to hook into rails-3 ,generated a scaffold and a migration file ,did rake db:migrate for database migration but nothing happens no error no migration, can ...
1
vote
1answer
13 views
What's the correct syntax for remove_index in a Rails 3.1.0 migration?
I'm in the process of adding Devise to an existing Rails app, with a Users table already defined. The devise generator pushed out the following migration:
class AddDeviseToUsers < ...
1
vote
3answers
79 views
Can't Rails 3 run in MySQL MyISAM mode, without InnoDB?
I have a MySQL server running with InnoDB disabled (for reasons of performance), with this setup I can't seem to be able to use Rails 3 (with the mysql2 adapter).
Here's my test migration:
class ...
1
vote
1answer
31 views
How to set the current “version number” of migrations?
I have a bunch of migrations, but due to some weird reason, rails suddenly forgot that it has ran most of these already. Now when I try to run rake db:migrate, rails will try to run ALL of the ...
1
vote
0answers
64 views
How can I add precision and scale to a decimal column without losing data in Rails 3?
I want to add precision and scale to some existing decimal columns in Rails 3 with SQLite. I've tried 3 different approaches, but have not been able to permanently affect the schema.
First, I tried ...
1
vote
2answers
18 views
collapse previous rails migrations
Is it possible to create a single migration from all the previous ones, so that it would have the effect of rake db:schema:load? I have many migrations that are useless (going back and forth between ...
1
vote
1answer
24 views
How to manipulate method names as strings?
I have a migration with 14 string columns, which I have named after:
q1, q2, q3...q14
Is there any way that I can iterate through those as literals? something like:
i=1
while i<15 do
...
1
vote
2answers
49 views
Cannot update old entries after adding columns to the table Rails 3.1
I have a rails app which is already running with some users, users that I cannot delete.
Now I have added a couple of columns to the user table(like last name, nickname).
The problem is that ...
1
vote
1answer
68 views
Rails Migration Failing to Update Text Field
I am using Rails 3.1.1 and Ruby 1.9.2. I am moving a database from a Ruby 1.8.7 environment to a Ruby 1.9 environment and would like to execute the following migration:
# coding: utf-8
class ...
1
vote
0answers
36 views
Rails plugin containing a database migration?
We're considering writing a Rails plugin that contains database migrations. This is because the same tables will be used on multiple servers. The plugin also helps us logically isolate that portion ...
1
vote
2answers
304 views
has_many & belongs_to migration with foreign keys and database constraints in postgres?
I've searched several questions about migrations and their answers, but I didn't find a satisfactory solution.
I want to use simple has_many and belongs_to relationships like
class User < ...
1
vote
1answer
39 views
Learning Rails 3.0 - Migration Help - belongsTo
I'm working on a photo gallery app. Photo has a belongsTo relationship to Album (Album has_many realtionship to Photo) How do I create the migration that adds this relationship to the database ...
1
vote
1answer
159 views
Accessing custom helper methods in rails 3 migrations
In rails 2 I had a lib/migration_helpers.rb file with methods for setting and dropping foreign keys in the db.
These methods were available in self.up and self.down in migration files by adding in the ...
1
vote
2answers
169 views
Ruby on rails: rake migrate down doesn't seem to be working
I generated a migration that adds a column called encrypted_password to the users table present in my databse. This was generated automatically by rails using the command:
rails generate migration ...
1
vote
1answer
111 views
Creating (Dropping) Multiple Tables in One Migration
Is it possible to create (self.up) multiple tables in one rails three migration. If this is possible, what is the conventional wisdom on using such an approach. Something tells me it would be better ...
1
vote
2answers
142 views
Rails Models relationships
Hello fellow developers!
Recently I've been playing with Rails 3.0 and after quite a bit of research I'm kinda stuck.
I want to know what approach or solution is the best in my case(I couldn't find an ...
1
vote
2answers
120 views
Rails3 Devise authentication Migration
I have been messing around with how it will be best for my new application to represent the users table in the database.
I noticed a migration named like this:
20110512234640_devise_create_users.rb
...
1
vote
2answers
100 views
Should a rails migration be committed separately from schema.rb?
After generating / writing / running a Rails database migration, should the migration file and db/schema.rb be committed to version control separately?