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