summaryrefslogtreecommitdiff
path: root/db/migrate/20140813090117_add_ldap_groups_table.rb
blob: 2cd7d239088b6d262ac1ab0d6f068aef33986008 (plain)
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