Files
discourse/db/migrate/20150410002551_add_title_to_groups.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
148 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddTitleToGroups < ActiveRecord::Migration[4.2]
def change
add_column :groups, :title, :string
end
end