Files
discourse/db/migrate/20130416004607_create_groups.rb
2013-04-19 10:34:39 +10:00

9 lines
161 B
Ruby

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