5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-17 02:40:48 +00:00
panel/db/migrate/20230519143500_add_pagination_to_site.rb
f d0f7843fbf
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
fixup! feat: poder paginar solo algunos sitios #12714
2023-05-19 14:40:42 -03:00

9 lines
220 B
Ruby

# frozen_string_literal: true
# Agrega la opción de paginación a los sitios
class AddPaginationToSite < ActiveRecord::Migration[6.1]
def change
add_column :sites, :pagination, :boolean, default: false
end
end