6 lines
187 B
Ruby
6 lines
187 B
Ruby
class AddProofToOrgs < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :organizations, :proof, :text
|
|
add_column :organizations, :approved, :boolean, default: false
|
|
end
|
|
end
|