aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20180216231420_create_govuk_guix_revisions.rb
blob: 05721195cb4bd30ec2932832b39ecbdc4777926f (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreateGovukGuixRevisions < ActiveRecord::Migration[5.1]
  def change
    create_table :govuk_guix_revisions do |t|
      t.string :treeish
      t.string :store_path

      t.timestamps
    end
    add_index :govuk_guix_revisions, :treeish, unique: true
  end
end