Tagged Questions
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
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
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 ...
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 ...
2
votes
3answers
73 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 ...
0
votes
1answer
43 views
How to reset auto increment field in a ActiveRecord migration?
In my migration I have:
def up
MyModel.destroy_all
MyModel.create!({:id=>1,:name=>'foo'})
MyModel.create!({:id=>2,:name=>'fooBar'})
...
0
votes
2answers
75 views
how to set default value to column in rails while creating migration
I am new to Model in rails. I know how to create model & how to add column to them. Now I want to set default value to a column but I am not getting that how exactly I can do it.
I generated new ...
0
votes
0answers
97 views
Truncate table on migration down method of ActiveRecord Rails 3.1
I have the following defined on my up method on my migration to set initial data:
def up
Color.create!({:id=>1,:name=>"",:color=>"FF6633"})
...
0
votes
1answer
16 views
Database-aware Rails Migration
I am working on a rails application, and I am using Sqlite in my dev environment and PostgreSQL in production. Is there any way to write a "database-aware" migration? i.e. one that would execute a ...
0
votes
2answers
57 views
Rails migration gives error when trying to also create a record in the self.up
I have the following migration:
def self.up
add_column :project_statuses, :system_sequence, :integer, :default => 0, :null => false
ProjectStatus.create :name => 'Declined', :sequence ...
0
votes
0answers
23 views
ActiveRecord Migrations multiple databases
I need to move some of my tables in the current schema to a different database, as I need to turn off binary logging for these tables and Mysql doesnt allow turning off binary logging for a specific ...
0
votes
1answer
28 views
What is a good way to change some hard-coded files to a active-record models?
Right now my products model has a string column of category, with the form having a select which gets its values from an array in the product model. Right now there are only three possible categories: ...
0
votes
2answers
552 views
Rails rake db:migrate has no effect
I made a new Rails 3 app today, added a simple migration, and for some reason, nothing happens when I do rake db:migrate. It simply pauses a few seconds, then returns to the command prompt, with no ...
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
2answers
317 views
Adding a custom column data type in Active Record
On my local machine I develop my Rails application using MySQL, but on deployment I am using Heroku which uses PostgreSQL. I am in need of creating a new data type, specifically I wish to call it ...
0
votes
2answers
306 views
How to create migration in subdirectory with Rails?
I'm writing SaaS model application.
My application database consist of two logic parts:
application tables - such as user, roles...
user defined tables (he can generate them from ui level) that can ...
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 ...
0
votes
1answer
319 views
In Rails, saving value of type String to a datetime column just saves nil. Why?
I came across this idiosyncrasy while testing my validations. With a migration defined as follows:
create_table :time_windows do |t|
t.datetime :window_begin, :null => true
t.datetime ...