Tagged Questions
9
votes
2answers
190 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
994 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
197 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
86 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
242 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
751 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
796 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
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
93 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
260 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
219 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
183 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
72 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
84 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
67 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
510 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
2answers
213 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 ...
1
vote
3answers
77 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
63 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
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
67 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
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
2answers
166 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
110 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
99 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?
1
vote
1answer
67 views
Why I got ActiveRecord::Relation object?
I try to get a car instance from database,
theCar = Car.where(:name => 'TOYOTA')
puts theCar.user_name
I got the error message: undefined method `user_name' for
ActiveRecord::Relation:0xb6837b54
...
1
vote
2answers
59 views
How to insert two associated instances in to corresponding tables by using a Migration?
I have two ActiveRecode model, Car and User, which has many-to-one association:
class Car < ActiveRecord::Base
has_many :users
...
end
class User < ActiveRecord::Base
belongs_to :car
...
1
vote
1answer
127 views
How to make Rails migration conditional on current RAILS_ENV?
How do you make a Rails migration conditional on the current RAILS_ENV?
Specifically, I want to:
Check a migration into head-of-master
Execute the migration only on our Staging instance
Doing ...
1
vote
2answers
71 views
How can I specify that all tables should contain certain fields?
Supose that I already have defined my database with a lot of tables (around 40). I realize now that I want to add certain columns to each table. For the sake of the example let it be
created_by and ...
1
vote
1answer
351 views
Bypass validations during a data only migration to fix validation errors
In rails i have amigration to alter production data to fit new validation rules, There are several things wrong so i have 2 different migrations (they could be one but still two aspects that run ...
1
vote
1answer
417 views
Does rails let you generate a HABTM migration from the command line?
Whenever I've had to do a HABTM in rails I've always found myself wondering if it's possible to generate the required migration from the command line.
I was hoping to save time by just doing ...
1
vote
3answers
109 views
How to increment a value in a Rake script?
How can I change this :project_pages_id => 1 value to auto increment?
user.projects.create!(:title => Faker::Lorem.sentence(1), :project_pages_id => 1)
1
vote
1answer
284 views
migration rollback in rails
Hey guys
I only want to undo one migration file, something like
rake db:rollback VERSION=$TIMESTAMP
this command doesn't work, any suggestion?
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 ...