Fix Migration to work under PostgreSQL

From J. Zellman

Postgres text type does not support an upper limit.
master
Jacques Distler 2010-01-21 15:54:52 -06:00
parent d67ce28855
commit 4dae13c567
1 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
class ModifyTextTypes < ActiveRecord::Migration
def self.up
change_column :revisions, :content, :text, :limit => 16777215
unless adapter_name.eql?('PostgreSQL')
change_column :revisions, :content, :text, :limit => 16777215
end
change_column :pages, :name, :string, :limit => 255
change_column :webs, :additional_style, :text
end