class CreateGroups < ActiveRecord::Migration def self.up create_table :groups do |t| t.string :name t.boolean :active t.string :comment t.timestamps end end def self.down drop_table :groups end end