1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/db/migrate/20140603084413_create_groups.rb

10 lines
149 B
Ruby
Raw Normal View History

2015-05-05 03:10:25 +02:00
class CreateGroups < ActiveRecord::Migration
def change
create_table :groups do |t|
t.string :name
t.timestamps
end
end
end