Files
redmine/groups/db/migrate/093_create_groups.rb
T
2008-04-28 15:10:04 +00:00

12 lines
201 B
Ruby

class CreateGroups < ActiveRecord::Migration
def self.up
create_table :groups do |t|
t.column :name, :string, :null => false
end
end
def self.down
drop_table :groups
end
end