5 lines
126 B
Ruby
5 lines
126 B
Ruby
class ValidateForeignKeyOnNotes < ActiveRecord::Migration[7.2]
|
|
def change
|
|
validate_foreign_key :notes, :users
|
|
end
|
|
end
|