discourse/db/migrate/20130416004607_create_group...

11 lines
222 B
Ruby

# frozen_string_literal: true
class CreateGroups < ActiveRecord::Migration[4.2]
def change
create_table :groups, force: true do |t|
t.string :name, null: false
t.timestamps null: false
end
end
end