summaryrefslogtreecommitdiffstats
path: root/app/models/account_deletion_request.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/account_deletion_request.rb')
-rw-r--r--app/models/account_deletion_request.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/models/account_deletion_request.rb b/app/models/account_deletion_request.rb
new file mode 100644
index 00000000000..7d0c346cc27
--- /dev/null
+++ b/app/models/account_deletion_request.rb
@@ -0,0 +1,20 @@
+# frozen_string_literal: true
+
+# == Schema Information
+#
+# Table name: account_deletion_requests
+#
+# id :bigint(8) not null, primary key
+# account_id :bigint(8)
+# created_at :datetime not null
+# updated_at :datetime not null
+#
+class AccountDeletionRequest < ApplicationRecord
+ DELAY_TO_DELETION = 30.days.freeze
+
+ belongs_to :account
+
+ def due_at
+ created_at + DELAY_TO_DELETION
+ end
+end