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

10 lines
276 B
Ruby

class ExpandContentMigrationMigrationSettings < ActiveRecord::Migration
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