summaryrefslogtreecommitdiff
path: root/db/migrate/20090211220524_create_permissions.rb
blob: 4ef6bc483fc751bed6f536801d254e4508d0e3d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class CreatePermissions < ActiveRecord::Migration[4.2]
  def self.up
    create_table :permissions do |t|
      t.boolean :granted
      t.integer :node_id
      t.integer :user_id
      
      t.timestamps
    end
  end

  def self.down
    drop_table :permissions
  end
end