0
votes
0answers
10 views

Delete all migration files on heroku

heroku is giving me issues. I want to delete all the migration files on heroku . The problem is that, on of the migrations is to modify a foreign key relationship. But this issue is that the ...
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 ...
-1
votes
1answer
25 views

heroku migration issue

After i run heroku run db:migrate , i got this error . . the app works fine in development.i also did some research on this website , and try several solutions , seems not working.can somebody ...
0
votes
1answer
95 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
100 views

Migrating mySql2 to postgreSQL : query cache type error when mysql2psql

So I'm migrating my development environment and production environment to postgresql so that I can deploy to Heroku. After installing the mysql2psql gem, initializing a (postgresql)database.yml file- ...
2
votes
1answer
65 views

Heroku operational error

I have an app currently running in Heroku, but it suddenly stopped working, at first it told me I couldn't migrate my DB because some tables that already existed, in fact existed, let me explain ...
3
votes
1answer
68 views

Heroku - how to remove table and run migration again?

I just discovered that one of my tables in Heroku app has a different structure than the one on my localhost. In the best way I would need to run the migration that create a new table again, but what ...
1
vote
1answer
45 views

Heroku Run migration but still doesn't recognize the column

This is my view, where the problem is happening: <div class="row" style="margin-top:10%;"> <div class="four columns"></div> <div class="four columns"> ...
0
votes
1answer
115 views

Deleted migrations and Heroku

A few days ago I created a migration for rails to add Paperclip avatars, but ended up going a different direction. Being new to Rails, I didn't know how bad of an idea it was to delete the migration ...
0
votes
1answer
54 views

How do i make rails 3 model type cast according to migration?

The problem that i have is when i run my migrations the updates is applied to the database, but rails does not do the same. To be more accurate. I have a address model with a house number. Recetly i ...
0
votes
1answer
108 views

Latest Migration to Heroku doesn't seem to be working

In my latest commit, I added a boolean column called "accepted" to a table/model named Submissions. It migrated fine in my test and development environments, but when I pushed it to Heroku, it doesn't ...
0
votes
1answer
34 views

delete previous migration on heroku

I have a Ruby on Rails application. I changed my database and I want to deploy it to heroku. How can I delete previous migrations on heroku and migrate my new database design? I test using this ...
0
votes
1answer
130 views

problems updating DB to heroku with south migrations

I have a Django proyect running in heroku for some time now, the thing is that, tree days ago, I've tryed to update my schema model but, every time I write heroku run python manage.py migrate ...
1
vote
1answer
736 views

PGError: Error: column of relation does not exist - Rails / Heroku

I'm trying to change the value of a column "isGroup" to the value "public". I created a migration: Post.connection.execute("update Posts set isgroup='public'") However, I get the following ...
0
votes
0answers
95 views

problems with router port 5000 when I upload a ruby 193 app on heroku

I've ruby 193 app and I've installed Heroku toolbel to load then my application on it, which automatically installs ruby 192. I've alse pik with both versions. C:\Prove>pik list 187: ruby 1.8.7 ...
1
vote
1answer
125 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
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
2answers
172 views

Error command : heroku run rake db:migrate

I have a simply app with rails 3.2.8 and MySQL in development, when I try to use this command > heroku run rake db:migrate I have this error : PG::Error: ERROR: column "name" of relation "users" ...
2
votes
2answers
96 views

Rails creating a table without migration

I have a rails app that has a particular table where the data and even the structure is dynamically generated outside of rails and ruby. This is by design, it is a special table where the structure is ...
0
votes
1answer
139 views

Why is Heroku telling me “Your app has no databases” when it clearly does?

I know the subject of migrating Heroku databases has lots of documentation but I have yet to find my answer, and nobody seems to be mentioning the error I'm getting. I developed my app using the ...
0
votes
4answers
441 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 ...
4
votes
1answer
663 views

Rails Migration Error w/ Postgres when pushing to Heroku

I'm trying to perform the following up migration to change the column "number" in the "tweet" model's table class ChangeDataTypeForTweetsNumber < ActiveRecord::Migration def up change_column ...
1
vote
4answers
338 views

404 error on heroku db:push

I am getting a 404 error when trying to push my database to Heroku via Taps (1.9.2@[app_name]_db) heroku db:push --app [app_name] Loaded Taps v0.3.24 Auto-detected local database: ...
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: ...
0
votes
1answer
144 views

Follow external database from Heroku

Is it possible to configure a Postgres 9.1 database running in EC2 to be the source for a Heroku Postgres follower database? In other words: $ heroku config:set ...
0
votes
0answers
110 views

First heroku database migrations with devise

Hi I'm new to rails and I am trying to put my app on heroku. But when I try to heroku run rake db:migrate --trace heroku run rake db:migrate --trace Running `rake db:migrate --trace` ...
0
votes
3answers
267 views

Heroku “We're sorry, but something went wrong” after Postgres migration

I recently did Heroku's requested database migration from a "shared database" to Postgres. I followed Heroku's directions carefully, and it all went fine until the last step: removing the old shared ...
0
votes
2answers
871 views

How many concurrent connections were allowed (and was there any caching) on now-legacy Heroku Shared Databases?

I'm making the migration from the old Heroku shared database to the equivalent new plan. Based on my number of total table rows, it appears that the Basic database is the correct fit. However, ...
2
votes
1answer
795 views

Heroku migration: PG::Error: ERROR: relation “roles” does not exist

When I run the command heroku run rake db:migrate for deploy my app to Heroku, I get this error: PG::Error: ERROR: relation "roles" does not exist : SELECT a.attname, ...
3
votes
2answers
320 views

Is there a way to upgrade from a Heroku shared database to a production grade database like Basic or Crane?

I have been using the Heroku shared database for a while now in an app and I would like to upgrade to their new Basic/Crane/etc. production grade databases. I don't however see a clear path to do ...
0
votes
2answers
85 views

Insert Rails Migration Between Two Existing Migrations

I created the following migration: class FixVoteColumnName < ActiveRecord::Migration def change rename_column :votes, :post_id, :votable_id add_column :votes, :votable_type, ...
0
votes
3answers
201 views

user first_name last_name fields to create a full_name field

I have first_name and last_name fields currently represented in my model in rails. I'd like to add another field to my database called full_name and was wondering what the best way to do this ...
3
votes
2answers
232 views

Rails migration not working on heroku, Model class reported as uninitialized constant

I'm trying to run a migration on heroku and I can't seem to find the problem why my model class is not recognized. This is my migration: class AddTestToGoals < ActiveRecord::Migration def ...
6
votes
3answers
606 views

Heroku: rogue transfer in progress

I started a migration on Heroku last night that gave me no feedback for hours, and which I eventually stopped because it wasn't clear if the system was even doing anything. Ever since, it's been a ...
0
votes
1answer
81 views

Heroku migrations that accept user's input

I have a Rails migration that looks like this: puts "*** What would you like to do? ***" puts "(a)dd columns AND copy data" puts "(c)olumns only (no data copying)" puts "(d)ata only (no column ...
0
votes
3answers
181 views

heroku rake migration issue

I deployed to heroku: git push heroku master then I try: heroku run rake db:migrate but it's show this issue: error: src refspec logs does not match any. error: failed to push some refs to ...
5
votes
3answers
2k views

How do I change a string column into a bigint?

In rails migration. How do I change a string type column to a bigint? I have: t.change :ip_number_from, :integer, :limit => 8 I get: PG::Error: ERROR: column "ip_number_from" cannot be cast ...
1
vote
1answer
203 views

Heroku - clean up the database, run the migrations with new items

I have an app on Heroku and need to clean up the database there, again run all (edited) migrations (in the migrations are added the default rows into the table) with the new default rows. I ran ...
2
votes
2answers
1k views

How to populate production database (heroku) with development data? (Rails)

heroku run rake db:migrate works fine to alter the structure of the production database: Migrating to CreateUsers (20120318090252) Migrating to AddIndexToUsersEmail (20120319191315) Migrating to ...
2
votes
1answer
309 views

Heroku and Rails: transferring db to staging and db:migrate

I've been working on a Heroku app for several months. We've recently set up a staging server and occasionally sync the staging db with the production db. The three main commands in use are: $ ...
2
votes
2answers
543 views

Heroku Run Migrations Before Deploying Code

I would like to run migrations before deploying code to my Heroku instance. This is because the code I write is backwards compatible with my database and if the migrations take a long time I don't ...
4
votes
2answers
502 views

Postgresql changes in Heroku and Django combo with shared database

I've just started using Heroku with Django and it seems great. However, when I change my existing models I'm not sure how to run those changes to the Heroku environment. The syncdb works just fine ...
0
votes
2answers
157 views

Heroku and default database setting

I've just deployed a commit to Heroku which adds a portfolio field to my photos table. I have set default => true on this. Here is an abbreviated look at my schema.rb: create_table "photos", ...
7
votes
3answers
2k views

heroku db:pull does not work?

I get the following error message: heroku db:pull --debug postgres://USERNAME:PASSWORD@localhost/test Loaded Taps v0.3.23 Warning: Data in the database 'postgres://USERNAME:PASSWORD@localhost/test' ...
1
vote
1answer
876 views

“\xC4” from ASCII-8BIT to UTF-8 when running rake db:migrate on Heroku

When I try to run heroku run rake db:migrate in my application, I get the following error "\xC4" from ASCII-8BIT to UTF-8 with a stacktrace of ...
1
vote
1answer
72 views

How to do huge data migrations on Heroku?

Hi we have an app on Heroku, that is changing a lot from time to time. This means that we need to do some pretty big migrations on our data now and then. My question is - how to do this efficiently ...
2
votes
1answer
210 views

Applied migration entry not presente on schema_migrations table

I got an app running in production on heroku, but there is a problem with the schema_migrations table. The last migration changes are present at the db/schema.rb file, but there is no entry for this ...
0
votes
1answer
39 views

How to add indexes to Rails DB?

When adding an index to a table, is it as simple as writing a migration with: add_index(:column_name) And for the down method remove_index(:column_name) Are there any surprises I need to be ...
1
vote
2answers
1k views

Heroku db:push error (rails)

When I run $heroku db:push, I get the following error: Saving session to push_201110231302.dat.. !!! Caught Server Exception HTTP CODE: 500 Taps Server Error: PGError: ERROR: value too long for type ...
3
votes
1answer
531 views

Issue with running a migration on heroku

This is a follow up to this post Rails, data structure and performance, where I have attempted to create a Counter Cache on Rails. To not have it to default 0, I have also added updating the column ...

1 2