mirror of
https://0xacab.org/sutty/sutty
synced 2025-02-17 00:41:50 +00:00
9 lines
226 B
Ruby
9 lines
226 B
Ruby
![]() |
# frozen_string_literal: true
|
||
|
|
||
|
# Agrega posibilidad de autopublicación del sitio
|
||
|
class AddAutopublishToSites < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
add_column :sites, :autopublish, :boolean, default: false
|
||
|
end
|
||
|
end
|