1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/db/migrate/20181130090126_add_confirmed_to_passports.rb

8 lines
192 B
Ruby
Raw Normal View History

2018-11-30 04:02:05 -05:00
# frozen_string_literal: true
class AddConfirmedToPassports < ActiveRecord::Migration[5.2]
def change
add_column :passports, :confirmed, :boolean, null: false, default: false
end
end