5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 11:36:21 +00:00
panel/db/migrate/20230822165038_add_autopublish_to_sites.rb
jazzari fa7689a531
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
fix: fix auto_publish name in site #13244
2023-08-22 18:20:46 -03:00

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