This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Loading…
Labels












Also, if I simply take 20090706193825 out of the migrate directory, the migration completes. The error seen at the end of bin/recreate_databases is then:
An Exception was thrown by scenario: foundation
rake aborted!
undefined method `ping_host_url=' for #<Collection:0xb6e94114>
On my attempt to load the site, I get this error:
RuntimeError in ContentController#index
Called id for nil, which would mistakenly be 4 -- if you really wanted the id of nil, use object_id
RAILS_ROOT: /var/www/railsapp
Application Trace | Framework Trace | Full Trace
app/controllers/application.rb:536:in
set_session_hierarchy_variable'<br/> app/controllers/application.rb:628:inset_current_language'app/controllers/application.rb:628:in
set_current_language'<br/> /usr/bin/mongrel_rails:19:inload' /usr/bin/mongrel_rails:19Seems the revert of eol.sql and eol_data.sql to the older versions broke something (some tables went missing). Using the previous versions fixed the problem and the foundation scenario ran without error. Migrate did stop at AddCuratorialToComments, though:
== 20090406173750 AddCuratorialToComments: migrating ========================== -- add_column(:comments, :from_curator, :boolean, {:default=>nil, :null=>false}) rake aborted!
Mysql::Error: Duplicate column name 'from_curator': ALTER TABLE
commentsADDfrom_curatortinyint(1) NOT NULLThis ran fine:
root@rails:/var/www/railsapp# git checkout HEAD~3 db/eol.sql
root@rails:/var/www/railsapp# git checkout HEAD~3 db/eol_data.sql
root@rails:/var/www/railsapp# bin/recreate_databases
Downloaded master again, put back in my database.yml and mongrel_cluster.yml files, and ran bin/recreate_databases--all completed successfully!
Thanks for your help and patience while I try to get a working version up.