fixing borked migration for postgres
Oleg
committed Jan 18, 2012
commit d18d0f09f80e26e190e977516958370d238a0a8e
Showing 2
changed files with
2 additions
and 2 deletions
app/views/layouts/cms_admin/_body.html.erb
+1
-1
| @@ | @@ -13,7 +13,7 @@ |
| <div class='center_column'> | |
| <%= render :partial => 'layouts/cms_admin/center' %> | |
| <div class='sofa'> | |
| - | <a href='https://github.com/twg/comfortable-mexican-sofa' target='_blank'>ComfortableMexicanSofa</a> |
| + | <a href='https://github.com/comfy/comfortable-mexican-sofa' target='_blank'>ComfortableMexicanSofa</a> |
| <span class='version'><%= ComfortableMexicanSofa::VERSION %></span> | |
| </div> | |
| </div> | |
migrate/01_create_cms.rb b/db/migrate/01_create_cms.rb
+1
-1
| @@ | @@ -4,7 +4,7 @@ class CreateCms < ActiveRecord::Migration |
| text_limit = case ActiveRecord::Base.connection.adapter_name | |
| when 'PostgreSQL' | |
| - | nil |
| + | { } |
| else | |
| { :limit => 16777215 } | |
| end | |