Tagged Questions
0
votes
0answers
17 views
How to roll back an ActiveRecord migration using a rake task? (Not using Rails)
A Sinatra project I am working on is using MySQL and ActiveRecord and I need to be able to reverse the migrations every now and again to wipe the test database - eg when tests fail and leave crud.
My ...
0
votes
3answers
32 views
Do I have to explicitly generate a migration for the foreign key in a rails application?
Suppose I have Model Person and Model Book. One person has many books. I have a has_many books in Person's model and belongs_to in Book's model. When I generate those scaffold, there're no foreign ...
0
votes
1answer
60 views
undefined method `alias_method_chain' in active record 3.2.18 without rails migration
This is my Rakefile
require 'bundler'
Bundler.setup
require 'active_record'
require 'sqlite3'
require 'yaml'
require 'logger'
task :migrate => :environment do
...
0
votes
1answer
31 views
Rails: MySQL database table dropped, how to create one
Recently I did a mistake (actually foolishness). From phpMyadmin I dropped a table. Now I'm unable to import that table by this command.
mysqldump --user <my_name> --password=<my_pass> ...
0
votes
3answers
114 views
add a database column with Rails migration and populate it based on another column
I'm writing a migration to add a column to a table. The value of the column is dependent on the value of two more existing columns. What is the best/fastest way to do this?
Currently I have this but ...
1
vote
3answers
61 views
How do I make a database migration create a table with specific properties?
I'm trying to learn rails, and I've run into a bit of a problem.
I had an old sqlite3 database, and it has an Accounts table that I made earlier with some GUI program. I want to see if I can recreate ...
0
votes
2answers
42 views
Is a database migration always necessary when establishing an ActiveRecord association in Rails?
Many Rails tutorials depict the setup of an ActiveRecord association as requiring a database migration that establishes a foreign key (like with a has_many/belongs_to relationship, for instance). Yet ...
0
votes
1answer
136 views
Using postgres_ext with postgis adapter not working with array columns
I've successfully installed PostGIS and using the postgres_ext gem to add support Rails postgis ActiveRecord adapter, but when I try to use a Postgres array column type in my migration, it fails:
...
1
vote
1answer
124 views
“Unknown attribute” on Ruby script being run on Heroku
I've got a one-off script that I'm using to load some data into my application's database.
This is kind of large-ish so I've gist'd it here: https://gist.github.com/097fb5a30ce84522077a
The code as ...
0
votes
2answers
81 views
Specs for ActiveRecord::Migration helper method
I have added monetize and demonetize helpers inside ActiveRecord::Migration, ActiveRecord::ConnectionAdapters::TableDefinition and ActiveRecord::ConnectionAdapters::Table by that pull request.
That ...
0
votes
0answers
81 views
Heroku database migrations failing with “unable to connect”
I'm having a heck of a time getting a Postgres database on a heroku instance to allow me to run database migrations.
I'm also incredibly new to Heroku, so apologies in advance if this is a silly ...
0
votes
1answer
95 views
Create a new migration from controller
I would like to add to my table participant many attributes, since the yaml configuration file is given to me in input and I do not know how many attributes include before. My idea is to create a ...
4
votes
2answers
101 views
How can I work around the name of the model inside a migration?
The Rails migration guide, suggests you create a faux model inside the migration, if you need to operate on the data from the database, like:
class AddFuzzToProduct < ActiveRecord::Migration
...
0
votes
1answer
75 views
Generate migrations outside Rails.
I'm using ActiveRecord outside Rails. I would a program to generate the skeleton of a migration ( as well as a system to collect and maintain them ).
Can anyone make a suggestion?
0
votes
2answers
227 views
how to change a text column that default to null to default to '' in a rails migration
I am trying to write a migration to handle the null -> '' conversion but it doesn't seem to be working. I have:
def up
change_column :items, :detail, :text, :default => ''
end
Is this correct ...
0
votes
1answer
74 views
Observer weird behaviour
I have an observer who creates some records (tickets) when the status of a record (bookings) changes. It works ok when running the application. But wont run during migrations or in the rails console. ...
1
vote
1answer
137 views
rails migration failing silently
I've never had anything but success w/ Rails migrations, so this one is especially perplexing to me. I have a migration that I just wrote, it's fairly simple, but when I try and run it (for the first ...
3
votes
2answers
86 views
Is it possible to DRY this migration up?
I have a table, folders that I want some other tables to reference, so far my migration script looks like this:
create_table :folders do |t|
t.timestamps
end
....
change_table table1 do |t|
...
5
votes
1answer
2k views
Model.reset_column_information does not reload columns in rails migration
I'm using Rails 3.2 and have a migration that contains the code:
add_column :users, :gift_aid, :integer, :default => 2
# reset columns
User.reset_column_information
... code here to load legacy ...
14
votes
1answer
1k views
Why is this migration irreversible? (change_table, rename, text)
I have what I think is a pretty simple migration. For some reason I get an IrreversibleMigration error when I try to db:rollback or db:migrate:redo.
The migration runs smoothly, but I'd rather keep ...
5
votes
2answers
462 views
Rails 3.1: can't write to column in same migration that adds it
I had an add_column migration that would run fine. However, after running it and firing up a console, I would find the first_name and last_name columns completely empty. I tried using save! instead ...
2
votes
1answer
74 views
Strange migration error
I have got a strange migration problem in Rails.
I have got this user table
password
email
...
I want to extend this user table with few new columns like
name
dob
..
Then I want to run a ...
0
votes
1answer
61 views
Can you use AR and AR migrations outside of rails?
I want to use both active record and migrations but outside of a rails project.
I will use AR for some cron jobs, and I want to use AR migrations for a completely different project (not rails).
is ...
1
vote
1answer
75 views
db:migrate for a Models gem
So we abstracted our models into a gem because multiple applications use the same model set. The trouble is performing creating and performing migrations. Because it is a gem we basically removed ...
0
votes
1answer
185 views
What are the best practices for migrating an existing Sinatra app (+datamapper) to Rails 3 (+active record)?
When migrating an existing web application built using Sinatra and Datamapper, how would one go about migrating it to a Ruby on Rails (v3.1) and ActiveRecord application?
For example, start by ...
1
vote
1answer
604 views
Why did Rails Active Record migration generate COLLATE utf8_bin on varchar columns of mysql
I have running jruby on rails for rails version 3.0.10. I found out that somehow active record migration generate COLLATE utf8_bin on all the varchar column.
when I do a show create table users:
...
1
vote
0answers
266 views
ActiveRecord::Migration - Referencing a table in another schema
I'm using Ruby and PostgreSQL and have created 3 distinct DB schemas: billing (for billing related data), customer (for customer related data) and edocs (for electronic documents related data).
I'm ...
2
votes
1answer
359 views
refactoring: swicthing from custom data access layer to Entity Framework
I am a .NET Developer and as part of a refactoring project, I have a few questions.
Our software is currently using an Active Record pattern (one to one mapping between the data objects and the ...
3
votes
1answer
1k views
Rails Migration: Bigint on PostgreSQL seems to be failing?
Trying to create a table with a bigint column creates a standard integer column instead. What could be going wrong? I don't know where to start looking.
I'm using this in the migration:
create_table ...
0
votes
2answers
371 views
Rails 3 Migration update_all with relation / join
Given Following Models
class User
has_many :conversations
end
class Conversation
belongs_to :user
has_many :messages
end
class Message
belongs_to :conversation
end
I want to remove the ...
3
votes
2answers
1k views
Multiple database connections: schema_migrations is looked up in the wrong database
I am trying to use a secondary database connection for some of my migrations in the following way:
# app/models/staging/migration.rb
class Staging::Migration < ActiveRecord::Migration
def ...
1
vote
2answers
105 views
How can I change my DB schema while running a spec?
I want to test a model mixin, so I want to create a fake activerecord model to include it in, and then test the behavior of that model.
The specs I have from another context require the db table of ...
2
votes
2answers
529 views
How to set value to new column in Rails 3?
This is probably in another question, but I cannot find it.
I am a relative noobie to Rails. I am trying to add a new column to a table that already has data in it. This column is not going to ...
1
vote
1answer
84 views
how to assign different value to a column for different rows
For example, there is a table like following:
Column_A Column_B Column_C
I want to add a column D using ruby migration
I have a function getColumnDValue(columnC). This function can get the value of ...
1
vote
1answer
279 views
Problem using a model association in a Rails migration
I´m trying to fix some problems adding a column to comments table and performing some updates. But all day having this error:
rake aborted! An error has occurred,
all later migrations canceled:
...
4
votes
2answers
790 views
Migrating an Activerecord database to Mongoid
I'm new to Rails programming. I was thinking about implementing devise and omniauth authentication per railscast tutorial. Since I don't know mongoid yet, I was planning on just starting with ...
2
votes
1answer
1k views
Rails3 and Datamapper
I am going to migrate from rails 3 app, that used AR and arel to datamapper. I love chains of scopes like Person.where(...).where(...).somescope.paginate(...).order(...). how to migrate from this arel ...
9
votes
3answers
4k views
Update one column to value of another in Rails migration
I have a table in a Rails app with hundreds of thousands of records, and they only have a created_at timestamp. I'm adding the ability to edit these records, so I want to add an updated_at timestamp ...
0
votes
1answer
302 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
75 views
RoR/AR: advice on managing different RDBMS permissions across Rails environments
Is there a recommended practice for managing multiple testing and production database users under one Rails app? I've a Rails app with four different database users associated with it:
owner, the ...
0
votes
1answer
644 views
Rails getting undefined method for existing field in database
So I have a field in the question table, called is_public..I migrated my database, restarted it and now when I get this error everytime I call is_public for a record in the question records.
...
54
votes
5answers
26k views
Rails 3 migrations: Adding reference column?
If I create a new rails 3 migration with (for example)
rails g migration tester title:tester user:references
, everything works fine...however if I add a column with something along the lines of:
...
12
votes
3answers
3k views
default for serialized column in activerecord migration
so i have a serialized column :dimensions, and in my migration, i would like to set the field to be a default hash.
i have tried...
create_table :shipping_profiles do |t|
t.string ...
3
votes
2answers
312 views
Rails: is there a difference between 'references :foo' and 'integer :foo_id'?
When I use references :foo in a migration, the column that's generated is called foo_id. Is there actually any difference between doing references :foo and just doing integer :foo_id? Maybe ...
7
votes
1answer
2k views
Migrate down with only one migration
In order to test a new Rails plugin that I wrote, I'd like to check if the migration of that plugin works correctly. So I created a new test app, added the plugin, generated the migration and migrated ...
2
votes
0answers
433 views
Rails doesn't recreate mysql views in the test database, even when config.active_record.schema_format = :sql
We have some mysql Views in our development and test databases that were created via an execute(sql) statement in a migration. Rails' default schema.rb creates these views as tables. When ...
8
votes
4answers
977 views
Is it a good idea to purge old Rails migration files?
I have been running a big Rails application for over 2 years and, day by day, my ActiveRecord migration folder has been growing up to over 150 files.
There are very old models, no longer available in ...
3
votes
2answers
2k views
unsigned int field in a Ruby on Rails migration?
How could I make population unsigned?
def self.up
create_table :cities do |t|
t.string :name
t.integer :population
t.float :latitude
t.float :longitude
...
5
votes
1answer
630 views
Should I joint-index an ActiveRecord polymorphic association?
I have a metric table that I expect to be very large. It has a polymorphic association so that it can belongs_to other models that want to record some metric. I typically index association columns ...
1
vote
1answer
1k views
How to alter columns with ActiveRecord in Rails?
I'm new to ActiveRecord. I realized that I had forgotten to add a default value for a column in one of my tables. I want to create a migration to fix this, but I can't figure out how. Is there an ...