mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 11:36:21 +00:00
8 lines
227 B
Ruby
8 lines
227 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Agrega posibilidad de autopublicación del sitio
|
|
class AddAutopublishToSites < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :sites, :auto_publish, :boolean, default: false
|
|
end
|
|
end
|