frankfurter/db/migrate/010_add_provider_publish_schedule.rb

11 lines
191 B
Ruby
Raw Normal View History

2026-05-21 01:38:14 -06:00
# frozen_string_literal: true
Sequel.migration do
change do
alter_table(:providers) do
add_column :publish_time, Integer
add_column :publish_days, String
end
end
end