5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-26 01:16:23 +00:00

feat: add boolean autopublish to sites model #13244
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
jazzari 2023-08-22 13:58:10 -03:00
parent 8d736f8ac3
commit 1ec4740b89

View file

@ -0,0 +1,8 @@
# 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