neocities/migrations/033_add_site_id_to_site_change_files.rb

9 lines
154 B
Ruby

Sequel.migration do
up {
DB.add_column :site_change_files, :site_id, :integer
}
down {
DB.drop_column :site_change_files, :site_id
}
end