ectomobile/db/migrate/20220312190759_add_verification_to_readings.rb
f ae520e9076
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
verificar firmas
2022-03-12 19:10:33 -03:00

10 lines
274 B
Ruby

# frozen_string_literal: true
# Agrega la verificación de firma en la lectura
class AddVerificationToReadings < ActiveRecord::Migration[6.1]
def change
add_column :readings, :transaction, :text
add_column :readings, :verified, :boolean, default: false
end
end