2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/db/migrate/20130416004607_create_groups.rb

8 lines
191 B
Ruby

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