From 3ee578e6963b38db468187378d5e12d965865125 Mon Sep 17 00:00:00 2001 From: Kyle Drake Date: Fri, 10 Nov 2023 13:30:48 -0600 Subject: [PATCH] phone verification attempts migration --- migrations/121_phone_verification_attempts.rb | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 migrations/121_phone_verification_attempts.rb diff --git a/migrations/121_phone_verification_attempts.rb b/migrations/121_phone_verification_attempts.rb new file mode 100644 index 00000000..5f8e4277 --- /dev/null +++ b/migrations/121_phone_verification_attempts.rb @@ -0,0 +1,9 @@ +Sequel.migration do + up { + DB.add_column :sites, :phone_verification_attempts, :integer, default: 0 + } + + down { + DB.drop_column :sites, :phone_verification_attempts + } +end \ No newline at end of file