Tagged Questions
0
votes
2answers
33 views
Rails migration — rake db:status says migration is down, but database is already migrated?
I have a local PSQL database setup and am having issues getting rake db:migrate to function properly. For instance, my database has already had its high_school column name changed to high_school_name, ...
3
votes
1answer
56 views
Ruby on Rails deleted migrations still running on Heroku
So at one point in the development process I added a migration to add a column to my users table. This column added a "dollars" attribute. After that I decided to remove the "dollars" attribute by ...
0
votes
1answer
90 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 ...
0
votes
1answer
83 views
rake db:migrate not working properly without version
I have a simple rails app without dependencies (rails new example). Then I created a scaffold Student (rails g scaffold Student name:string). After, I run rake db:create and then rake db:migrate.
...
0
votes
3answers
34 views
error on rake db:migration
I am new at ruby and also rails. I can't why my rake db:migration is returning me this error
/usr/lib/ruby/vendor_ruby/rake.rb:30:in require': no such file to load -- rbconfig(LoadError)
from ...
1
vote
1answer
53 views
Writing database migration to reverse complex migration
I have a pretty old migration on a legacy app by a friend that contains this snippet:
class MakeChangesToProductionDbToMatchWhatItShouldBe < ActiveRecord::Migration
def self.up
# For some ...
1
vote
1answer
91 views
Can't rake db:migrate because of mysql missing .frm file
$ rake db:migrate
== ChangeFriendListToText: migrating - ======================================
-- change_column(:profiles, :friend_list, :text)
rake aborted!
An error has occurred, all later ...
1
vote
3answers
146 views
rails undefined method 'has_many'
I'm making a database:
class CreateUsers < ActiveRecord::Migration
def change
has_many :listings, :dependent => :restrict #won't delete if listings exist
has_many :transactions, ...
1
vote
2answers
62 views
Best Way to Recover from Running Empty Migration?
I created a migration a while ago that I must have forgotten to populate or something. I just went to recreate it and got the following:
Another migration is already named add_user_id_to_comments:
...
0
votes
2answers
612 views
rake migration aborted: could not find table 'roles'
I just inherited code that I'm attempting to run the migrations for but I keep getting a rake aborted error. I've come across others that have what appears to be similar issues, but most involved ...
0
votes
4answers
439 views
Heroku - doesn't work “rake” command: PG::Error: ERROR: relation “roles” does not exist
When I run heroku run rake db:migrate, I'll get this error:
rake aborted!
PG::Error: ERROR: relation "roles" does not exist
LINE 4: WHERE a.attrelid = '"roles"'::regclass
...
0
votes
1answer
143 views
Heroku rake db:migrate aborted
I have an app which is working fine in development, but when I pushed it to heroku and tried to run "heroku run rake db:migrate", the rake aborted with the following message:
rake aborted!
PG::Error: ...
1
vote
2answers
334 views
Can I delete a migration file?
When I ran bundle exec rake db:test:prepare I got the following:
rake aborted!
Multiple migrations have the name CreateMicroposts
To check the status of my migration files, I ran
rake ...
1
vote
1answer
55 views
Rails' migrations in PHP
Would it be possible to lift Rails' migrations and stick it straight into a PHP app (and run it with the rake command, etc)?
I've been looking into PHP equivalents, but I haven't been completely ...
2
votes
3answers
268 views
Rails: Questions about migrations
I'm new to Ruby on Rails, I know things but now I have to face real projects and do things. I wrote this migration:
def change
change_table :societies do |t|
## Database authenticatable
...
1
vote
1answer
412 views
rake db:migrate manually providing one file with migration
Somehow my test environment forgot to copy over several migrations. In order to troubleshoot, I want to call certain migration files by hand.
Is there a rake db:migrate option or trick that allows ...
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 ...
1
vote
2answers
208 views
How do I test or debug my migration scripts in rails?
I am current developing a big migration script, where I need to do the following:
1- Create new columns in table_1
2- Copy the values form table_2 to the new columns created in table_1
3- Delete ...
0
votes
2answers
518 views
Renaming original migration file in Rails after doing the rename_table_migration
I happened to create a Query model in Rails and recently found out that this is one of the reserved words now..
I renamed the table using a new migration file and renamed all the files that were ...
0
votes
0answers
457 views
Adding initial Data to Database in Rails 3.1.3 doesnt work with Rake Tasks (Bootstrap) nor Rake Migration [closed]
Trying to follow this Help ( How (and whether) to populate rails application with initial data ) with Rake Boostrap Tasks, i got this Error:
name@CURIUM ~/Documents/developing/rubyonrails/checklist ...
0
votes
1answer
70 views
Existing database migration in rails
If I've got a column in a database, I want to write a migration that generates another column that contains the md5 hash of the first column. The encryption I can do, but roughly what should the ...
1
vote
3answers
106 views
Newbie: About migration (how does it affect the test database)
In Rails, if I create & run a migration which used to add one new column to a table, then, the table will have a new column in the development database.
But, how could the test database also be ...
0
votes
1answer
331 views
invalid byte sequence in UTF-8 when running a migration
I get an invalid byte sequence in UTF-8 error when running a migration with rake in ruby on rails (version 3.1).
The code for my migration can be found below.
Thanks!
class ChangePhoneToString ...
1
vote
2answers
532 views
Need help resolving RAILS 3.0.9 migration issue
I'm having some serious rails issues. I haven't used it in quite some time so I went through and updated rvm, rails, etc. I'm currently running the following:
RVM -- rvm 1.6.25 by Wayne E. Seguin ...
1
vote
1answer
488 views
Rake db:migrate updates schema.rb, but not Mysql table. Any ideas why?
I'm trying to implement Devise for Ruby on Rails. The install went fine, but when I go to do the first migration (to add a Users table to my mySql database), it fails.
The rake task shows no errors, ...
0
votes
1answer
243 views
Heroku + rails, rake db migrate worked locally and failed on heroku…
I'm changing the scale on a column like so....
change_column :options, :size, :decimal, :precision => 8, :scale => 8
It's working locally, however when running it heroku it's throwing the ...
44
votes
1answer
5k views
How to handle too long index names in a Rails migration with MySQL?
I am trying to add an unique index that gets created from the foreign keys of 4 associated tables (users, universities, subject_names, subject_types).
add_index :studies, ["user_id", ...
0
votes
1answer
666 views
migration files and schema
So my Mac went down and now trying to build my project on my new Mac. I need to know when running rake db:migrate does it look at the schema.rb file?
As I am getting
Mysql::Error: Table ...
1
vote
2answers
272 views
ROR migration file names
I have migration files name like.
001_smomething
002_blah
003_bookblah
20110022211973_smoething
What order will these run in?
0
votes
1answer
2k views
Rake db:migrate missing :controller [closed]
I'm very confused about this error message, I'm completely unaware of any missing controllers yet this is the error it's spitting out
There's a little more that's cut off but I really hope that ...
1
vote
1answer
2k views
Heroku rake db:migrate
when I run heroku rake db:migrate I keep getting:
Migrating to CreateUsers (20110216103237)
== CreateUsers: migrating ====================================================
-- create_table(:users)
...
6
votes
3answers
2k views
Database not being selected in rails project when attempting to rake db:migrate
Working with a rails app, having some manner of weird database / rake issues.
When I execute:
rake db:migrate
I am getting the following error:
Mysql2::Error: No database selected: SHOW TABLES
...
0
votes
2answers
1k views
Rake db:migrate returns “rake aborted! no such file to load — spec”
For some reason, out of no where, rails began giving me an error on "rake db:migrate", and I can no longer run migrations. It returns the error "no such file to load -- spec ...
7
votes
3answers
3k views
How to revert all migrations at once in Ruby on Rails 3?
I tried to run:
rake db:migrate VERSION=0
It reverts all migrations except the last one.
Then I tried to run:
rake db:migrate:down VERSION=<timestamp_of_last_migration>
but it didn't ...
2
votes
2answers
2k views
rake db:migrate -> stack level too deep
I've never seen this error before, and I've no idea what I should be looking for.
$ rake db:migrate --trace
(in /Users/tscolari/Projetos/movies)
** Invoke db:migrate (first_time)
** Invoke ...
43
votes
6answers
34k views
Rails DB Migration - How To Drop a Table?
I added a table that I thought I was going to need, but now no longer plan on using it. How should I remove that table?
I've already ran migrations, so the table is in my database. I figure rails ...
9
votes
2answers
7k views
Does rake db:schema:dump recreate schema.rb from migrations or the database itself?
Does
rake db:schema:dump
recreate schema.rb from migrations or the database itself?
thanks
0
votes
1answer
156 views
Simple database migration error in Rails
I am not able to create database columns when i use t.string or t.number.
When i did rake db:migrate i got this
C:\Ruby\joker\chapter3>rake db:migrate
(in C:/Ruby/joker/chapter3)
== ...
0
votes
2answers
403 views
Why did Rails ignore my user_id field?
I tried creating a DB migration in Rails that looked something like this:
ruby script/generate scaffold post user_id:int title:string content:text
Looking at the resulting .rb file, sure enough, I ...
1
vote
2answers
146 views
How to use simple-numbered migrations versions in Rails?
I'm using NetBeans + Rails 2.3.8.
I notice that whenever I generate a model, the migration filename for it includes the date and time:
Model Name: User
Migration File Name : ...
2
votes
1answer
350 views
Rails: run rake tasks like migrations
My dev team needs to more precisely run rake tasks. There are certain tasks that need to be only run once after a specific code change. Without getting too specific, it would be like needing to update ...
3
votes
2answers
661 views
ActiveRecord Migration & Rake tasks not loading models?
I know that you can do something like this to load the rails environment:
task :my_task => :environment do
MyModel.find(1)
end
But it seems the code in the models are not executed. I am ...
0
votes
2answers
344 views
Rails — Possible to run migration methods in generic rake task?
I know this is not best practice, and most likely shouldn't even be used, as thats what migrations are used for, but I was wondering if its possible to execute migration specific commands in a regular ...
0
votes
2answers
230 views
Help with rake db:create
Im about to turn in to my school library a project which was done on rails.. this project is to be stored in a cd so that the school can have a copy of all my work for future reference if anyone wants ...
3
votes
2answers
9k views
Running migration on server when deploying with capistrano
I'm trying to deploy my rails application with capistrano, but I'm having some trouble running my migrations. In my development environment I just use sqlite as my database, but on my production ...
1
vote
2answers
4k views
Shortcut for rake db:migrate:down for ruby-on-rails
I want to know if there is a short way to do the migrations down equivalent to rake db:migrate (for the migrations up).
Instead of doing : rake db:migrate:up VERSION=1, rake db:migrate:up VERSION=2, ...
0
votes
1answer
228 views
Rails migration file not adding all my defined columns to the db
I'm trying to create a rails app, but somethings going wrong, I'm getting a nasty error undefined method title' for #`
I've used this ling:
ruby script/generate scaffold Blog title:String body:text
...
0
votes
2answers
2k 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 there someway I can ...
15
votes
6answers
10k views
Rake just one migration
I'm trying to run just one migration out of a whole bunch in my rails app. How can I do this? I don't want to run any of the migrations before or after it. Thanks.
1
vote
2answers
979 views
Rails migration question
I have 4 related migrations in my Rails app:
First 3 migrations create one table each in the self.up and and drops them in their respective self.down methods.
4th migration runs a rake task that ...



