class <%= migration_name_for_array.camelize %> def self.up create_table :<%= model_name.pluralize %> do |t| t.string :login t.string :group_strings t.string :name t.timestamps end end def self.down drop_table :<%= model_name.pluralize %> end end