scinote-web/db/migrate/20210612070220_add_creation_flag_to_user_assignment.rb

5 lines
171 B
Ruby

class AddCreationFlagToUserAssignment < ActiveRecord::Migration[6.1]
def change
add_column :user_assignments, :assigned, :integer, null: false, default: 0
end
end