summaryrefslogtreecommitdiff
path: root/db/migrate/20231031053134_add_kind_to_checkpoints.rb
blob: 2b71498a691bde344e2a16fa74351e60c0ced91a (plain)
1
2
3
4
5
class AddKindToCheckpoints < ActiveRecord::Migration[7.1]
  def change
    add_column :checkpoints, :kind, :integer, default: 0
  end
end