0
0
Fork 0

Add NOT NULL requirement to account columns on AccountPin (#33244)

This commit is contained in:
Matt Jankowski 2024-12-10 10:50:49 -05:00 committed by GitHub
parent e76aff7de5
commit e4e35ab134
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 28 additions and 5 deletions

View file

@ -5,10 +5,10 @@
# Table name: account_pins
#
# id :bigint(8) not null, primary key
# account_id :bigint(8)
# target_account_id :bigint(8)
# created_at :datetime not null
# updated_at :datetime not null
# account_id :bigint(8) not null
# target_account_id :bigint(8) not null
#
class AccountPin < ApplicationRecord