blob: 6fa225876f03cda9287f85964d6fb3f80683cb35 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | class CreateApiKey < ActiveRecord::Migration
  def up
    create_table :api_keys do |a|
      a.belongs_to :referential
      a.string :token
      a.string :name
      a.timestamps
    end
  end
  def down
    drop_table :api_keys
  end
end
 |