Browse Source

Add checked field to log_validations (#2657)

pull/2629/head^2
kosiakkatrina 4 months ago committed by GitHub
parent
commit
8064249925
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      db/migrate/20240923145326_add_validation_checked_field.rb
  2. 3
      db/schema.rb

5
db/migrate/20240923145326_add_validation_checked_field.rb

@ -0,0 +1,5 @@
class AddValidationCheckedField < ActiveRecord::Migration[7.0]
def change
add_column :log_validations, :checked, :boolean
end
end

3
db/schema.rb

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.0].define(version: 2024_09_18_112702) do
ActiveRecord::Schema[7.0].define(version: 2024_09_23_145326) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -410,6 +410,7 @@ ActiveRecord::Schema[7.0].define(version: 2024_09_18_112702) do
t.string "other_validated_models"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.boolean "checked"
end
create_table "logs_exports", force: :cascade do |t|

Loading…
Cancel
Save