Tagged Questions
0
votes
1answer
23 views
rake db:test:prepare or :clone dont create test database
As topic says, if I do a rake db:test:prepare or rake db:test:clone no test.sqlite3 gets created. Also did a db:migrate before
Terminal dont give any output.
Thats my database.yml
sqlite: ...
1
vote
1answer
62 views
rake db:create:all FATAL : password authentication failed
I am trying to follow this railscast tutorial. Now I am in the step, where you create the database with rake db:create:all, but I got this error message :
FATAL: password authentication failed for ...
0
votes
1answer
43 views
Show SQL generated by pending migrations in rails without updating the database
I'd like to have a way to produce the actual sql (ie: if I pasted into a mysql console, it would work) that will be generated by a rake db:migrate without actually updating the target database.
rake ...
0
votes
0answers
30 views
Load configuration for activerecord
I have model with custom connection to database:
class MyModel < AR::Base
establish_connection "#{Rails.env}_remote"
end
When I'm running rake -T command to see the list of rake tasks I got ...
0
votes
1answer
44 views
Can't dump a remote database
I have this database configuration in database.yml file
development:
adapter: mysql2
encoding: utf8
reconnect: false
database: oma_development
pool: 5
username: root
password:
host: ...
1
vote
0answers
32 views
rake aborted! FATAL: Peer authentication failed for user “root” [duplicate]
Possible Duplicate:
Rails 3.2, FATAL: Peer authentication failed for user (PG::Error)
While trying to rake db:setup i'm getting this error
rake aborted!
FATAL: Peer authentication failed ...
0
votes
0answers
113 views
rake db:seed fails after I install refinerycms-calendar
After I install refinerycms-calendar extension I do the following steps, but the final rake db:seed fails.
#In Gemfile:
gem 'refinerycms-calendar', '~>2.0.0'
followed by:
bundle
rails g ...
0
votes
1answer
70 views
error while running rake db:populate
after running rake db:reset
i rund rake db:populate and i'm getting this error don't know where it's coming from
rake aborted!
undefined method `+' for 4..5:Range
Tasks: TOP => db:populate
(See ...
0
votes
0answers
40 views
installing Gitirious - Rails
I am veery new to rails and I am installing gitorious following this this
The ultimate step consists in running :
export RAILS_ENV=production && bundle exec rake db:create && bundle ...
5
votes
1answer
57 views
What is an “Implicit Database Sequence”?
I pushed a Ruby on Rails test application up to Heroku and, after running the command heroku run rake db:migrate, received a notification that says:
NOTICE: CREATE TABLE will create implicit ...
0
votes
1answer
166 views
Connect existing MySQL databse in rails
I want to connect my Ruby on Rails application with a MySQL database, which was developed separately. For this connection I used the
development environment:
adapter: mysql
username: root
password: ...
0
votes
0answers
613 views
Ruby on Rails - database configuration does not specify adapter production
I'm trying to setup my application online using Passenger, Apache, and MySQL but when I run this command I get the following error
rake db:migrate RAILS_ENV='production'
rake aborted!
database ...
1
vote
1answer
28 views
What could be causing a skip in object_ids
After inadvertently overwriting my development database of ~100 rows/table with my fixtures test data (just 2 rows/table), the next new object created in each model started at id = 897600.
What could ...
1
vote
2answers
125 views
Update DB schema without using migrations in rails
I'm looking for a command that updates the schema automatically, without having to write migrations files.
For example, when I start a Java Hibernate app, with some configuration, the DB schema is ...
0
votes
0answers
260 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
0answers
168 views
Unable to create DB “rake db:create”, rake aborted
I have been trying out ROR sample blog app. in Windows 7. But when i try to create db it's getting some errors like rake aborted.
C:\Ruby193\blog>rake db:create --trace
rake aborted!
...
0
votes
1answer
717 views
Ruby on Rails: how to export a DB to an sql-file?
I would like to export the database into a single sql-file. I have taken on a project built by a developer who didn't seem to back it up before leaving the project. I need to take a copy of the ...
0
votes
1answer
397 views
Error when i run rake db:migrate installing fedena
I'm installing Fedena and struggling for two weeks now.When i run
rake db:migrate
i get this error
database configuration does not specify adapter.
Please help
Thanks
Clement Osei
1
vote
1answer
2k views
How to rake db:drop and rake db:create on Heroku? [duplicate]
Possible Duplicate:
How to empty DB in heroku
I have a Postgres database on Heroku. It is one of the free beta ones. Locally, when testing, I often run rake db:drop && rake ...
0
votes
3answers
962 views
Rake Aborted: Wrong number of arguments (0 for 1)
I was trying to integrate twitter authentication into my Ruby on Rails application (from the Ruby on Rails Tutorial).
As a result I dropped a table (user table ) and had to recreate it. I want to now ...
1
vote
2answers
369 views
Successful heroku run rake db:migrate but columns don't seem to work
I added a new column called level to my table called ClassRequest, ran a rake db:migrate on localhost and the view worked perfectly. Pushed the changes to heroku and the view met an error ...
0
votes
4answers
242 views
How can I copy my production-database to my test-database in Ruby on Rails?
I have a well-running production environment. For purposes of testing, I want to copy all database tables (including table content!) to my test environment.
I tried rake db:test:clone, but this only ...
1
vote
2answers
627 views
importing and exporting database
When importing or exporting Databases using Taps in heroku , is it necessary that we need to perform heroku run rake db:migrate command?what is the difference between heroku push and heroku migrate? ...
0
votes
1answer
216 views
facing a postgres error while running rake migration
I am getting the following uuid error while running a rails app with postgres as backend. Can someone help me out with which dependency is needed.
[root@localhost webapp]# rake db:migrate
(in ...
0
votes
2answers
1k views
rake db:migrate fails
I am creating a simple users table and when I ran rake db:migrate it appeared to create_table(:users) Howerver I got the following warnings at the same time. I tried running rake db:migrate again and ...
0
votes
1answer
1k views
Rails app rake db:migrate aborted - syntax error
I keep getting the following error when running rake db:migrate:
rake aborted!
syntax error on line 18, col 9: ` adapter: mysql'
Tasks: TOP => db:migrate => environment
(See full trace by ...
1
vote
2answers
210 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
524 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 ...
1
vote
1answer
491 views
Error resetting SQLite database with rake db:reset
I have successfully created a database and performed my first migration using:
class CreateUsers < ActiveRecord::Migration
def change
create_table :users do |t|
t.string :name
...
1
vote
2answers
590 views
rake db:migrate doesn't work and brings me back to the command line rails 3.1.1
Using rails 3.1.1 for windows with railsinstaller
>rake db:migrate
after a pause, brings me right back to the command line. No errors, no messages, just right back to the command line.
I ...
1
vote
3answers
2k views
rake db:schema:load could not find a table
EDIT from normalocity: My answer hasn't been able to solve this problem, so I'm posting a bounty for alternate solutions.
Original question:
I started to work on a Rails project a week ago, ...
0
votes
2answers
200 views
adding migration to heroku forces reset?
Every time I add a migration to a model, heroku seems to be unaware of that only until I do heroku rake db:reset / pg:reset
What is the procedure I must to to add for instance a :last_name to a user ...
0
votes
1answer
205 views
rails model attribute type doesn't get removed
I have a model "List" with an attribute called "description" of type string. Not a good idea so I want to change it to type text. However, I can't change it.
I've done:
rails destroy model List
...
1
vote
2answers
444 views
rake db:create (or migrate) blows up on me when entering command
I've been having this problem for over a week now. When I do a rake db:create or a rake db:migrate I get this long list of errors like:
...
0
votes
1answer
581 views
Unable to create the database using rake db:create
sahil@sahil:~/sites/QandA$ rake db:create
/home/sahil/.rvm/gems/ruby-1.9.2-p290@global/gems/rake-0.9.2/lib/rake/version.rb:4: warning: already initialized constant MAJOR
...
0
votes
1answer
113 views
Problem in migrating a database to Heroku
When trying to migrate a database to Heroku, I get the following (Provided that I'm using gem 'sqlite3', '1.3.3':
$ heroku rake db:migrate
(in /app)
rake aborted!
uninitialized constant Rake::DSL
...
8
votes
5answers
5k views
clearing rails app database on heroku production site
So I'm new to ROR and Heroku and need a little help. I've created an app and have deployed it; however, I'd like to clear out the database associated with it. Meaning I'd like to clear any users (and ...
0
votes
2answers
189 views
Deploying to Heroku
Following this tutorial, I applied the steps for deploying to Heroku under 2.3.5 Deploying the demo app.
When I run the command: > heroku rake db:migrate, I get the following:
$ heroku rake ...
1
vote
1answer
292 views
Include more than one postgres schema in rake db:schema:dump?
When running rake db:schema:dump on an app that uses a postgres schema (i.e. schema_name.users), it looks like it's only dumping tables for the first schema in the db user's search path. Is there a ...
1
vote
3answers
683 views
How do you reset only a specific table in rails
I have the tables (Maybe they're not called that) Users and Posts. I added a lot of tests posts to the Posts table (maybe it's called a database) so I want to wipe it. I know that I could use rake ...
2
votes
4answers
206 views
How do you rake a Heroku database?
I have an application on Heroku. However, whenever I change my database locally and then push the changes to the application, the database doesn't not change.
I realized that I need to run a rake on ...
0
votes
1answer
147 views
I am not able to run rake db:migrate or bundle exec rake db:migrate in Rails 3.0
I am getting an error when trying to run rake db:migrate here:
http://pastie.org/2058143
I've re-installed Rake a few times now after downgrading from Rails 3.1 RC (bad idea to upgrade to that) to ...
1
vote
3answers
732 views
“no database” error on any database-related rake tasks
`postgresql_connection': No database specified. Missing argument: database. (ArgumentError)
I installed postgresql using Homebrew and am able to connect successfully from the command line using my ...
0
votes
2answers
639 views
Problems with Rake and Ruby on Rails
I have been trying to run rake but it seems that ever since I updated ruby gems rake is failing.
This morning I ran:
gem update --system
And ever since, rake has been failing with the following ...
0
votes
1answer
56 views
Rake is out of synch with my Database
I have inherited a Ruby on Rails project where the programmer didn't use rake to create the db schema, so it seems very out of synch, is there a way to rectify this?
0
votes
1answer
727 views
Error running DB migration in Rails
I'm following a Rails Tutorial at RailsTutorial.org. When Trying to use rake to migrate the database I get an error.
$ rake db:migrate
I get this error:
rake aborted!
Multiple migrations have the ...
0
votes
1answer
697 views
Ruby, Rake, Mysql - creating database
How to do?
I tried something like:
RAILS_ENV=production rake db:create db:load
in file /lib/tasks/load_tasks.rake and this file I tried in terminal as rake db:migrate, but I am getting errors about ...
1
vote
2answers
1k views
rake db:create generated “if you set the charset manually, make sure you have a matching collation” error
I got a rails project in version 2.3.8.When i tried to run rake db:create,
the below error occured.
Couldn't create database for {"encoding"=>"utf8", "username"=>"root", "adapter"=>"mysql", ...
1
vote
1answer
601 views
Heroku rake db:migrate aborts; interning empty string… why?
Ok I've tried searching this site for other similar questions, but those that come close have no answers, so hopefully a rails/heroku guru can help me out.
I've created a basic rails app (I'm ...
1
vote
1answer
77 views
is there a way to “watch” for new database table inserts using rake task?
I have rufus scheduler and i was planning to watch my schedules table for new schedules. Is there a way to do that? something like:
schedule.every "1m" do
#check for new entries in database
end
...

