Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ozgun/7672578 to your computer and use it in GitHub Desktop.
Save ozgun/7672578 to your computer and use it in GitHub Desktop.
Rails migration: text to longtext (MySQL)
class ChangeStoreSettingsToLongtext < ActiveRecord::Migration
def up
change_column :site_configs, :store_settings, :longtext
end
def down
change_column :site_configs, :store_settings, :text
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment