1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-07 11:49:47 +00:00
discourse/db/migrate/20130416004607_create_groups.rb

9 lines
174 B
Ruby

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