The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
4answers
37 views

Please install mysql2 adapter

I'm new of rails, and i have this big problem. I'm running rails 3.2.9 and Ruby 1.9.3, I did a porting of a rails app from linux to windows, but in windows i'm having a lot of problems with mysql2 ...
0
votes
1answer
12 views

Installing phpmyadmin to be able to manage the mysql database the admin created for me

I dont have access to cPanel. I only can access the root of the site I am working on using FTP, with the domain name, user and password. I want to install phpmyadmin on the root so that I can manage ...
0
votes
1answer
44 views

sqlite database not migrated to postgresql when pushed to heroku server (django)

I pushed my app to heroku, but it seems that the database did not migrate (the database has 0 tables and 0 entries). How can I migrate it correctly?
0
votes
0answers
22 views

rake db:migrate not picking up all the fields in my migration file

I will be the first to admit that I am probably doing this wrong or have a poor workflow but I am trying to build my first rails app. It works different in 3 than I recall in rails 1 (last time i ...
1
vote
0answers
28 views

Rake db:migrate error - SQLite3

I keep getting the following error when doing the rake db:migrate command: rake aborted! An error has occurred, this and all later migrations canceled: SQLite3::SQLException: duplicate column name: ...
1
vote
1answer
86 views

Error with heroku run rake db:migrate

I am trying to run the command on Heroku Heroku run rake db:migrate but I get the error: Migrating to AddNameToUsers (20130320002032) == AddNameToUsers: migrating ...
0
votes
0answers
36 views

Trouble with Devise install on first Ruby project - One Month Rails by Mattan Griffel

I am a total noob. I am taking One Month Rails by Mattan Griffel and I ran into my first set of problems in the video, Adding Users with Devise, at this point: Gemfile > bundle install > rake ...
0
votes
2answers
42 views

rake db:migrate gets error

I have just recently cloned a sample rails application I am working on onto my macbook and I am trying to run rake db:migrate but I get the following error rake aborted! ...
0
votes
1answer
56 views

how does “bundle exec rake db:migrate” work if i have multiple databases?

I am a newbie to rails/ruby. i have two databases, sqlite for development/testing and postgres for production/deployment. when i run "bundle exec rake db:migrate", which database is updated with my ...
1
vote
1answer
313 views

rake db:migrate error (Function 'inotify_init' not found)

I just got done setting up my rails environment on my old mac book and ran into this error. I've installed FFI and rb-inotify. I've also ran bundle install again. I've looked at ...
0
votes
1answer
172 views

rails : rake db:create is not creating the new table

I am working on an existing rails project where I have to add a new tab. Well, I have written all the corresponding models, views and controllers and then changed the schema.rb file to create the new ...
4
votes
1answer
192 views

Segmentation fault ruby 1.8.7 on db migrate in rails

On this command RAILS_ENV=production bundle exec rake db:migrate I'm getting this error : [BUG] Segmentation fault ruby 1.8.7 (2011-06-30 patchlevel 352) [x86_64-linux] I thought of trying this ...
3
votes
1answer
246 views

How to make rake db:migrate generate schema.rb when using :sql schema format

If using the this option in config/application.rb: config.active_record.schema_format = :sql then when you do: rake db:migrate it only dumps the db/structure.sql. I know it isn't using the ...
1
vote
0answers
476 views

Rails DB Migration Error: relation already exists

I am getting an error when I try to migrate my db. I don't entirely remember how I got here, but I believe I: created new branch, scaffolded 'Requests', db:migrated, switched back to master, and ...
0
votes
2answers
83 views

rake db:migrate problems with using paperclip

I installed paperclip 2.7 using gem install. I did rails generate paperclip user photo. and then tried migrate the db. But it gave me an error. SQLite3::SQLException: duplicate column name: ...
0
votes
2answers
286 views

Can Push to Heroku But Can't Run Migration

I can push a Rails app to Heroku with ... git push heroku but when I try to migrate with ... heroku run rake db:migrate I get ... Running rake db:migrate attached to terminal... ...
0
votes
1answer
189 views

rake db:migrate syntax error (that doesn't exist)

rake db:migrate aborts because of a syntax error rake aborted! /Users/Fryed/rails/treebook/db/migrate/20121009215822_devise_create_users.rb:3: syntax error, unexpected '\n', expecting '|' ...
0
votes
2answers
72 views

heroku run rake db:migrate works correctly when typed into console, but not when run via a rake task

I have the following task: task :migrate_test => :environment do puts 'Running database migrations ...' puts `heroku run rake db:migrate --app my-app` end When I run heroku run rake ...
0
votes
1answer
788 views

rails db:migrate fails '[MODEL].users' doesn't exist: SHOW FULL FIELDS FROM `users`

I done lot of googling and read lot of stack overflow pages , but can't fix this issues. If any one can help with this , it will be helpful. My app works fine still yesterday , now suddenly it starts ...
0
votes
2answers
135 views

Rails rake db:migrate of a recently created database

I have just created a database. I am trying to migrate but I am receiving a table not found error. rake db:migrate ...
2
votes
1answer
227 views

heroku run db:migrate fail as rake aborted

after pushing my latest code Heroku doesn't alter the tables. when i run "heroku rake db:migrate" i get rake aborted! its says syntax error but i cant figure where is the error syntax error on line ...
2
votes
1answer
381 views

Vagrant, VirtualBox, Capistrano, db:migrate - could not connect to server

I have just worked my way through the book "Deploying Rails" and im stuck where capaistrano calls db:migrate. I have set up two VMs - app und db - each of them separate working perfektly. The VM app ...
0
votes
0answers
187 views

Heroku run rake db:migrate error - Cygwin w/ Windows 7

Trying to migrate my database to Heroku (First time) I received the error below. I'm using Cygwin and Windows 7. Running `rake db:migrate` attached to terminal... cygwin warning: MS-DOS style path ...
1
vote
1answer
428 views

Conversion of DDL Oracle to Postgres

I have a very huge DDL script in Oracle of our existing Application, It has no Stored Procedures, Just Tables, Sequences and constraints. What is the best way to convert to Postgres? Some people ...
0
votes
0answers
258 views

Gemfile updated but get rake aborted! undefined method `prerequisites' for nil:NilClass error

I'm going through RoR tutorial and when trying to run the rake db:migrate command on page 226 of the book I get the following error: rake aborted! undefined method `prerequisites' for nil:NilClass ...
0
votes
2answers
329 views

RoR Getting Started Guide: Rake db:migrate undefined method 'reference'

I'm following the RoR Getting Started tutorial. Having created posts, I'm now adding the second model to create comments. However, when I try rake db:migrate I get this: ** Invoke db:migrate ...
1
vote
2answers
547 views

Rails 3 => Undefined method 'array' when I try to rake db:migrate

This is my first post here so go easy. I am trying to build my first app in Rails 3.2.1. I am trying to generate a scaffold for Paint using the following terminal command: rails generate scaffold ...
0
votes
0answers
357 views

Rails 3 rake db:migrate:up/db:migrate:down/db:migrate:redo VERSION not working

Using Rails: 3.0.11, Ruby: 1.9.3, Rake: 0.9.2.2 I have disabled my /config/environments/development.rb by putting a message like puts "RAILS_ENV 'development' is not used anymore. Please use ...
3
votes
1answer
180 views

Grails - DB migration for Quartz plug-in persistency

We would like to use the Quartz plug-in persistent mode, for working in a cluster. Our DB schema is maintained using the DB-migration plug-in, and therefore we can not use the provided SQL script for ...
2
votes
1answer
298 views

Using rake db:migrate inside another task leaves pending migrations

I'm new to rake and I'm trying to find my way in automating some tasks. So I wrote my first rake task and failed: namespace :app do desc "Leaves application like new" task :reset => ...
0
votes
1answer
18 views

Does the latest version of Rails require my db migration files to have “down” (undo) commands for the db?

Because it sure doesn't seem like it. When I generate a model and check out it's db migration file (I'm a bit of noob so forgive me for any ignorance), there is no "down" code which has been ...
0
votes
1answer
267 views

Heroku deprecation warnings when trying to migrate the database

I have a Rails 3.2 app that I've created and want to deploy it on Heroku. I created a new session on the cedar stack and pushed up my app to it. However, when I try to migrate the DB I get ...
0
votes
1answer
140 views

Redis data sync for Heroku

Is there a way I can sync my local redis store to the remote store in Heroku? What is possible is a migrating the local data to the heroku server and running the 'SET' command yourself via the heroku ...
0
votes
2answers
586 views

Need help migrating database from development to test using Rails

Similar questions has been asked a lot. But, I think my situation is a bit different. I pulled a db from Heroku (I use sqlite3 in prod) to my local machine (uses PostgreSQL ). The prod db didn't have ...
0
votes
1answer
225 views

Why do I keep getting this error when I try and run rake db:migrate?

== AddAncestryToMessages: migrating ========================================== -- add_column(:messages, :ancestry, :string) rake aborted! An error has occurred, this and all later migrations ...
0
votes
1answer
106 views

rake db:migrate is not working - continuously pending

>C:\rails_projects\sample_app>rake db:migrate >-- create_table("users", {:force=>true}) > -> 0.5100s >-- add_index("users", ["email"], {:name=>"index_users_on_email", ...
0
votes
0answers
155 views

rake db:migrate stops unexpectly

I have been trying to get a R0R app running on CentOS 6.2, Ruby 1.9.2p318, Rails 3.0.7 and rake 0.8.7. This is the package combo on the development Windows & system and on the CentOS server. THe ...
0
votes
1answer
156 views

Problems running rake db:migrate in a Ruby on Rails app

I am trying to run rake db:migrate in my Ruby on Rails application. However, it is giving me a "uninitialized constant" exception. From Googling this, it looks like the solution is to update the ...
1
vote
1answer
184 views

Rails & Pre-existing MySQL Database: Is there an easy way to integrate database structure into Active Record?

I have a pre-existing MySQL database with naming conventions far from Rails conventions. Is there any option, other than manually making each model, to get all the database information ready for ...
1
vote
3answers
286 views

migrate database schema on update of Java EE application

I have a Java EE application which use SQL Server Express as backend database. When we deploy new version sometime we need to change the database: add tables, add columns, remove columns, merge ...
5
votes
3answers
3k views

DEPRECATION WARNING: You have Rails 2.3-style plugins in vendor/plugins! Support will be removed in Rails 4.0 [duplicate]

Possible Duplicate: Rails 2.3-style plugins and deprecation warnings running task in Heroku I am running rake db:migrate gives me the following warnings and then aborts: $ heroku rake ...
0
votes
1answer
229 views

bundle exec rake db:migrate >> ROUTING ERROR

I got a small problem. I'm new and reading through the guides on how to build a demo_app. I started with '$ rails generate scaffold User name:string email:string' After successfully generating the ...
0
votes
2answers
761 views

rake db:migrate RAILS_ENV=development

Why we get an error on the command rake db:migrate Rails Error: Unable to access log file. Please ensure that /home/mahaloo/mahaloo/releases/20120329200051/log/development.log exists and is chmod ...
0
votes
6answers
3k views

How to transfer my MySQL database to another computer?

I am using XAMPP package in my own desktop with Window 7 as OS. That means I'm using MySQL DB and Apache server. Now I would like to copy/migrate my whole MySQL DB to my friend's desktop, which is ...
0
votes
1answer
116 views

Running db:reset on Heroku results in syntax error

I have a boolean field that seems to be causing issues. When I run heroku run rake db:reset, I get this as a result: rake aborted! PGError: ERROR: syntax error at or near "(" LINE 1: ...her_email" ...
2
votes
2answers
478 views

Why database migration fails in case of blob datatype in rails?

I'm trying to create a simple application with ruby in rails. I've created this scaffold: rails generate scaffold Pic title:string content:blob description:text and when I try to migrate db with ...
0
votes
2answers
809 views

Declare local variable: how convert this mssql script to oracle?

declare @amount float declare @result char (20) select @amount = cost from PurchaseDoc where id = 1 if @amount > 0 set @result = 'ok' else set @result = 'empty' print @result
0
votes
0answers
182 views

db:migrate hangs on simple migration

I am using PostgreSQL, Rails 3.1.3 and Ruby 1.9.3. I am struggling to use db:migrate as outlined here. This is what I am seeing in the terminal: funkdified@funkdified-laptop:~/railsprojects/hartl$ ...
1
vote
1answer
188 views

Ancestry db:migrate

I am trying to install the Ancestry gem but I am having problems with rake db:migrate. I am following the instructions on the Ancestry github page. After I have done rails g migration ...
7
votes
5answers
3k views

How do you skip failed migrations? (rake db:migrate)

I can't seem to find an option or anything that allows me to skip migrations. I know what you're thinking: "you should never have to do that..." I need to skip a migration that makes changes to ...

1 2