* Add EmailAuthorization model * Add model file oops * Add comment for uuid type Co-authored-by: Ben Halpern <bendhalpern@gmail.com>
5 lines
153 B
Ruby
5 lines
153 B
Ruby
class ValidateCreateEmailAuthorizationTable < ActiveRecord::Migration[5.2]
|
|
def change
|
|
validate_foreign_key :email_authorizations, :users
|
|
end
|
|
end
|