mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 02:11:42 +00:00
10 lines
283 B
Ruby
10 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
|