1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
class AddLdapGroupsTable < ActiveRecord::Migration def up create_table :ldap_groups do |t| t.string :cn, null: false t.integer :group_access, null: false t.references :group, null: false t.timestamps end end def down drop_table :ldap_groups end end