Rails migrations are used to track and apply database alterations in a reversible manner.
0
votes
2answers
24 views
In Rails, how do I go over a db migration without executing it?
So I jumped onto this Rails project at work and I have my own copy of it running on my local devbox. I tried to run the tests to see what the results were but rake came back complaining that I had 5 ...
1
vote
1answer
15 views
How do I deal with migration name clashes?
I installed a shopping cart gem (Piggybak), that created a migration called create_orders......but I am no longer using that gem, and have added a migration to drop all tables related to piggybak.
...
0
votes
0answers
17 views
Why am I asked to run 'rake db:migrate RAILS_ENV=test'?
On Rails 4.0.0.rc1, Ruby 2.0.0, after I run a migration, I see the following error when I try to run a test through rspec:
...
0
votes
2answers
29 views
How to Reverse a Migration that Requires a Gem
I recently tested the Queue_Classic gem in my app. Part of the setup is running this migration:
require 'queue_classic'
class AddQueueClassic < ActiveRecord::Migration
def self.up
...
0
votes
1answer
25 views
How do I change the name of a model generated by scaffold cleanly?
I have a model called ModelA that I want to rename to ModelB.
I generated ModelA by doing rails g scaffold ModelA. That generated the model, controller, views, specs, routes, etc.
How do I cleanly ...
0
votes
1answer
18 views
Rails: Canceled `rails g migration` command and now I can't run later migrations
I was trying to change a column datatype and initially wrote a rails g migration command to change the column's datatype; however, the process in my terminal window just hung up and appeared to not do ...
1
vote
1answer
26 views
How to use lib in rails migrations?
I was wondering if there is a way to easily access methods/classes from the lib folder in migrations? I found a way to require them with
require File.expand_path("../../lib/my_library")
I don't ...
0
votes
2answers
43 views
Rails user profile devise :has_many or :has_many_through relationships
I'm wracking my brain about how to start setting up the following set of model relationships in my project. I'm not looking for the complete solution (models, tables, migrations, etc), just a little ...
0
votes
1answer
13 views
Future model agnostic db migration rails
The general problem is that a migration could fail if the model is changed in the future by adding a code which doesn't has underpinned by the db.
The scenario is similar to this:
I have a migration ...
0
votes
1answer
54 views
Rails 4.0 integer ID -> UUID / Add options hash to table in ActiveRecord Migration?
stackoverflow newbie here, although I've been on here many times to look for helpful answers in the past. This is my first question though, so please be nice :)
I've been trying to figure out how to ...
0
votes
1answer
41 views
rails migration - update column with constraints
How to add new column and update its value from another table's column with conditions ?
I'm having two tables named user
id: integer
name: string
preferred_communication_channel_id: integer // ...
0
votes
1answer
16 views
Is it possible to mix migrations file without harmful consequences?
Let me explain :
I followed the M. Hartl tutorial and I did just like him with migrations. So now, I have the followings files in my db/migrate directory (I spare you the timestamps):
...
1
vote
1answer
53 views
Having Trouble Generating a Ruby Migration
I wanted to generate a new migration for a site running Rails 2.3.14 and Ruby 1.8.7. I wrote the command
ruby script/generate migration AssetTable
Expecting the script to generate a file ...
0
votes
1answer
32 views
How do I fix a botched migration that didn't remove a column?
I made a migration to remove a column from my first app ever about a week ago:
class RemoveHalfOrFullFromFurlough < ActiveRecord::Migration
def up
remove_column :furloughs, :half_or_full
...
0
votes
1answer
48 views
Rails Migrations: How to split one table into two tables?
I have a database with the following schema:
[ Region ] 1 --- * [ District ] 1 --- * [ Location ]
I would like to split the middle table into two tables as follows:
[ Region ] 1 --- * [ District ] ...
0
votes
1answer
40 views
Changing Model associations after running migration
I have a Devise User model with the following contents for which I did run migration.
class User < ActiveRecord::Base
# Include default devise modules. Others available are:
# ...
0
votes
1answer
22 views
Adding :scale to a column in a table already filled with data(non scaled) and Updating existing values-Rails 3
i have a migration file
class CreateProductDetails < ActiveRecord::Migration
def change
create_table :product_details do |t|
t.integer :quantity , :default => 1
...
5
votes
2answers
59 views
schema.rb messed up due to migrations in other branches
Currently I'm working with a huge rails application and multiple branches with each a new feature for this application.
It happens a lot a feature will require migrations, which shouldn't be a problem ...
0
votes
2answers
25 views
Database structure in a Rails project and keep track of migrations
So after alot of reading i found out that i dont need to plan my database ahead. I just start working on the application and do migrations on every change.
So for example if I decide to add something ...
0
votes
1answer
77 views
rake db:migrate rake aborted! unable to determine name from existing gemspec
I am trying to rake db:migrate. I cloned a repository and tried to rake db:migrate, but get this error :
rake aborted!
Unable to determine name from existing gemspec. Use :name => 'gemname' in ...
1
vote
1answer
37 views
where to define a rails view table and instead a mysql table is created
I am using RoR3.2 and have a bunch of model objects now. One thing I'd like to do is have a mysql view but I'm not sure where you put it.
class CreateQv < ActiveRecord::Migration
def up
...
0
votes
1answer
45 views
Rails calling Models in the Migration
I have a migration that creates a table, and I need to access the model for that table to create another table. The migration seems to not recognized that the original table has been created, so to ...
0
votes
2answers
43 views
add_index error [Ruby on Rails]
I am trying to create a "one-to-many relationship between owner and property" but I don't know why I am getting this error, after generating a model I tried to add_index before run rake db:migrate but ...
0
votes
1answer
36 views
Error when adding foreign key in ActiveRecord Migration
I have the following db/migrate ruby file. When I tried rake db:migrate, it gave error.
class CreateEmployers < ActiveRecord::Migration
def self.up
create_table :employers, ...
0
votes
3answers
28 views
Linking two objects to a single record in rails active record
I'm trying to make two one to one relationships in the same class in rails.
I added two columns to my class called link
post_id1
post_id2
So now I want to be able to get a link object, and do
...
0
votes
1answer
95 views
rails migration remove keys and add data into auto-increment column id
I have php application with below table structure
CREATE TABLE IF NOT EXISTS `artist_has_fans` (
`artist_id` int(11) NOT NULL,
`fan_id` int(11) NOT NULL,
PRIMARY KEY (`artist_id`,`fan_id`),
KEY ...
0
votes
1answer
24 views
How do I sort the migration script folder in a ascending fashion
How do I sort the migration script folder in a ascending fashion (i.e. I want the recently created scripts to come at the bottom when I do a ls -l command). Currently its coming in a mixed fashion.
0
votes
1answer
88 views
rails with carrierwave migration error: undefined method `attachment'
I'm using carrierwave gem ( ver. 0.8.0 ). When I make 'rake db:migrate', I see strange error:
== AddAttachmentLogoToMerchants: migrating ===================================
-- ...
0
votes
1answer
31 views
Rails: last migration reapplied
Sometimes rake db:migrate tries to run migrations which have already been successfully migrated (without any errors). When I check the schema_migrations table, the repetitive migration is not there.
...
1
vote
1answer
129 views
How can i remove a column from table using rails console
It is easily possible to remove a column using rails migration.
class SomeClass < ActiveRecord::Migration
def self.up
remove_column :table_name, :column_name
end
end
I want to know if ...
1
vote
3answers
52 views
What is the best way to resolve Rails orphaned migrations?
I have been switching between branches in a project and each of them have different migrations... This is the scenario:
$ rake db:migrate:status
Status Migration ID Migration Name
...
0
votes
1answer
32 views
rake migrate aborted for undefined local variable or method
Got a issue when i run rake db:migrate. The mistake message is like
-- create_table(:addresses)
-> 0.1792s
-- contact_id()
rake aborted!
An error has occurred, this and all later migrations ...
0
votes
1answer
59 views
Skip validations on ActiveRecord concat during migration?
I have a migration that uses the ActiveRecord concat method to add an object to another object's has_many relationship. Since creating the migration, I have added a new attribute to the parent model ...
0
votes
0answers
49 views
Create rails migration files from admin web interface
I'm looking at the best way to manage a dynamic models in rails from a web interface; for example lets say i have a product model and from the admin web interface I want to be able to add a new ...
0
votes
1answer
42 views
How to Handle ActiveRecord Migrations in a Distributed Gem?
I am trying to write an app as a gem using ActiveRecord without Rails.
My problem is how to migrate a database already deployed by a user who will not have rake, etc. I have just distributed a ...
0
votes
0answers
35 views
Creating a trigger for Rails 3 using MySQL
I'm trying to set up a Rails app to enforce data integrity on both the front end and back end (may be unnecessary, but I'm doing to project for a non-profit organization and a class, so I figured...). ...
0
votes
1answer
185 views
Heroku run rake db:migrate results in no change in the database, app restarted several times
I have a problem with pushing my migrations to the production database.
The issue:
I've altered database schema by adding 1 column.
I've migrated it to the production database:
MacBook-Air-Mac:app ...
-4
votes
1answer
51 views
Rails (rake) default ID field
When creating a table on my pgslq db with rake, rails allways create an "id" field as primary key.
My issue is that i need to have the id field with a custom name. How can i specify the database ...
0
votes
1answer
42 views
Best solution for doing database migration on mysql?
I currently facing one problem when doing the migration especially adding new field to existing table which contains millions of records will take very long duration to complete. So I wonder is there ...
3
votes
1answer
151 views
What is the best way to drop a table & remove a model in Rails 3?
I have a model & a table which I no longer need in my App, I could leave them there but I would like to remove them to keep things tidy.
I'm trying to figure out the best way to remove them with ...
2
votes
1answer
40 views
Typo in rails migration file
Folks,
I have a situation where I created a rails migration file which updates the value of an attribute in a model. I ran this migration on several production deployments and then realized the table ...
2
votes
1answer
250 views
How to change primary key in rails migration file?
I need to migrate an old mysql table like this:
Products
name (string, primary_key)
to this schema:
Products
id (integer, primary_key, auto_generated)
name (unique)
I need the Products.id ...
1
vote
1answer
42 views
auto_html breaking rails migrations
I'm having troubles with auto_html breaking rails migrations. I get this trace on a new db/first migration run (see end as it's huge).
I solve it by commenting out code like this in the model:
...
0
votes
5answers
71 views
Rails Migrations - Modify rows based on condition
I need to update a table data in database using RAILS migrations.
Sample:
Table: Table_A(Col_A(number), Col_B(varchar),...)
Query: UPDATE Table_A SET Col_B = "XXX" where Col_B = "YYY"
What would ...
0
votes
1answer
128 views
Rails changes schema.rb timestamps to datetimes
This problem seems to happen all the time when working with other developers. We have a table created in a migration like so (backed by postgres):
create_table :subscription_events do |t|
t.integer ...
2
votes
2answers
42 views
Grab Ruby on Rails files and install on local machine
general question that can be used in many different situations, so I thought it would be interesting to ask.
I'm semi new to Ruby and am learning from Treehouse. I am doing the social media site ...
1
vote
1answer
49 views
How can I display a default message while running rails migrations?
We are moving our table data into a different database for archival. So, when users add migrations in Main DB i want to display a default message reminding them to perform the same migration for the ...
0
votes
1answer
51 views
How come this rails query works locally but fails on Heroku?
I have the following method in my controller:
@featured_topics = Topic.find_all_by_featured(true)
It works fine locally, but when I upload my site to Heroku, it fails, and I get a NoMethodError. ...
1
vote
3answers
72 views
rails migration columns name with _id suffix
Want to do rails migration but i want the column name to be something like external_id but I don't want to any model with external . i think rails by default , whenever sees _id as suffix it looks for ...
0
votes
1answer
14 views
Update forms template rails 3
this question may sound silly but i wanted to know if there way a way to update the form and model once we change a database.
For example when i generate scaffolding i may forget 2 fields that i ...







