Tagged Questions
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 ...
2
votes
1answer
510 views
Create multi column distinct index using mysql with rails migration
Trying to execute this statement in a rails migration to generate a multi column unique constraint/index:
add_index :contributors, [:project_id, :user_id], :unique=>true
I've also tried ...
1
vote
1answer
46 views
Importing redefined SQL data from old app to new one
I've nearly finished rewriting (with some new features) my Symfony (left a bit bad taste in mounth) application into Rails. There is some amount of data which I need to import from my old application ...
0
votes
2answers
76 views
Rails migration: update_all with dynamic code is possible?
I'd like to add a new field in a table.
My new "secret_code" field in my User model should be equal to Digest::SHA1.hexdigest([Time.now, rand].join)[1..12].
What I'm trying to do is generate a ...
0
votes
2answers
181 views
Updated a rails3 migration, but results dont show up after rake:db migrate
I am working with a Devise migration file. Originally it was like this:
class DeviseCreateUsers < ActiveRecord::Migration
def self.up
create_table(:users) do |t|
...
0
votes
2answers
99 views
Errors while performing a user migration
I am trying to implement the Devise authentication library and also add columns that I may need to use that are particular to my own application.
I run the rake migration command and I get a strange ...
0
votes
1answer
117 views
Setting up MYSQL with the latest version of Ruby on Rails
I am a total ruby on rails noob, and I have been trying to follow Lynda.com's ruby on rails 3 essential training. However, this was made when mysql was the default database, and somehow since then the ...
0
votes
1answer
194 views
Create migration from application
I want to create migrations to add columns from my rails application (not through rails g migration xxxx), while creating the migration I want to store the version number to the for the migration for ...
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
86 views
rake db:migrate wipes out my database
I have an app that I'm porting from PHP/symfony to Ruby/Rails. Though the language is changing, there is no need to modify the database (MySQL) in any way.
Because I already have my database defined, ...
0
votes
2answers
247 views
How can you get a sql script of changes from Rails migrations (for MySQL)?
I've seen http://github.com/muness/migration_sql_generator, but it doesn't work properly with MySQL for certain important operations. Is there any other way we can capture the sql generated during a ...
0
votes
2answers
115 views
mysql missing field after running rails db migration
i have a rails migration:
>> cat db/migrate/20091126031039_create_cards.rb
class CreateCards < ActiveRecord::Migration
def self.up
create_table :cards do |t|
t.string ...