summaryrefslogtreecommitdiff
path: root/db/migrate/20160210105555_create_pages_domain.rb
blob: 0e8507c7e9ad678210f991b5ab04ee1f6633ddbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class CreatePagesDomain < ActiveRecord::Migration
  DOWNTIME = false

  def change
    create_table :pages_domains do |t|
      t.integer :project_id
      t.text    :certificate
      t.text    :encrypted_key
      t.string  :encrypted_key_iv
      t.string  :encrypted_key_salt
      t.string  :domain
    end

    add_index :pages_domains, :domain, unique: true
  end
end