mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 23:31:41 +00:00
9 lines
283 B
Ruby
9 lines
283 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Los sitios pueden tener un formulario de contacto. Pueden
|
|
# deshabilitarlo si están recibiendo spam o un ataque.
|
|
class AddContactToSite < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :sites, :contact, :boolean, default: false
|
|
end
|
|
end
|