osem-fcy/db/migrate/20140529133228_add_description_to_supporter_level.rb

8 lines
171 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2014-05-29 20:23:33 +05:30
class AddDescriptionToSupporterLevel < ActiveRecord::Migration
def change
add_column :supporter_levels, :description, :text
end
end