0
votes
3answers
48 views
What is the down migration for adding a polymorphic reference
I have the folowing migration but don't know what to use in the down method
change_table :addresses do |t|
t.references :addressable, :polymorphic => true
end
1
vote
2answers
26 views
MongoMapper and migrations
I'm building a Rails application using MongoDB as the back-end and MongoMapper as the ORM tool. Suppose in version 1, I define the following model:
class SomeModel
include Mong …
0
votes
3answers
28 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 imag …
3
votes
2answers
39 views
How do I check the Database type in a Rails Migration?
I have the following migration and I want to be able to check if the current database related to the environment is a mysql database. If it's mysql then I want to execute the SQL …
2
votes
12answers
1k views
Why is rake throwing this Rails migration error?
I have two machines... a development machine and a production machine. When I first brought my rails app onto the production server, I had no problem. I simply imported schema.rb …
9
votes
5answers
420 views
Migrations for Java
I use both ruby on rails and Java. I really enjoy using migrations when I am working on a rails project. so I am wondering is there a migrations like tool for Java? If there is n …
1
vote
1answer
125 views
How to create a nifty_scaffold without worrying with the migrations?
I need to use the nifty_scaffold to generate all the views and controller for my model, but I already have the model, the migration and the table in database, so I don't need it to …
0
votes
2answers
93 views
Rails: Create Default root user through migration? Rake task?
I'm testing my app out on Heroku (which is f***ing amazing!) and I realized that I have no way of creating my root user.
I'm using Authlogic and rails_authorization_plugin.
Is th …
2
votes
1answer
77 views
Are there any tools to do Migrations (a la Ruby) on Microsoft SQL Server (MSSQL)?
Are there any tools, or 'best practices' for creating Migrations on MSSQL? I have a Dev & Production database, and the Dev one often has new SPROCs created, and occasionally th …
1
vote
3answers
41 views
Can I use just migrations from rails to maintain a database schema?
Our application isn't going to use rails for any part of its final state, but migrations are a fantastic way to define schema in my experience, so I'd like to use just that one asp …
0
votes
1answer
57 views
Can i stop Rails from using a timestamp prefix for migrations after some migrations have been generated using timestamps?
There are about a hundred or so migrations in my migrate folder with numeric prefixes, then about a hundred or so with timestamp prefixes, so i guess at some point Rails version wa …
0
votes
1answer
72 views
Adding defaults and indexes to a script/generate command in a Rails Template?
I'm trying to set up a Rails Template that would allow for comprehensive set-up of a specific Rails app. Using Pratik Naik's overview (http://m.onkey.org/2008/12/4/rails-templates) …
0
votes
1answer
36 views
Defining methods in Rails migrations
I'm trying to define a method inside a migration, but I'm getting an undefined method error:
undefined method 'do_something_specific' for #<ActiveRecord::ConnectionAdapters::SQ …
0
votes
3answers
73 views
Why do migrations need the table block param?
Why does the ruby on rails migration syntax look like this:
create_table :my_table do |t|
t.integer :col
t.integer :col2
t.integer :col3
end
And not:
create_ta …
3
votes
4answers
497 views
In a Rails Migration (MySQL), can you specify what position a new column should be?
If I'm adding a column via MySQL, I can specify where in the table that column will be using the AFTER modifier. But if I do the add_column via a Rails migration, the column will b …
