canvas-lms/db/migrate/20110503231936_expand_conte...

12 lines
294 B
Ruby

class ExpandContentMigrationMigrationSettings < ActiveRecord::Migration
tag :predeploy
def self.up
change_column :content_migrations, :migration_settings, :text, :limit => 500.kilobytes
end
def self.down
change_column :content_migrations, :migration_settings, :text
end
end