discourse/db/migrate/20130416004607_create_group...

9 lines
161 B
Ruby
Raw Normal View History

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