Websites/db/migrate/20240504225048_drop_api_images_created_by.rb
Donovan Daniels b1c702e3cd
Add image management ui
poorly tested but it worked well enough, I'm sure I'll be patching bugs over the next few weeks
Also remove turbo because it sucks
Also changed the way we handle hosts in dev
2024-05-06 03:25:17 -05:00

8 lines
180 B
Ruby

# frozen_string_literal: true
class DropAPIImagesCreatedBy < ActiveRecord::Migration[7.1]
def change
remove_column(:api_images, :created_by, :string, null: false)
end
end