Websites/db/migrate/20240504225048_drop_api_images_created_by.rb

8 lines
180 B
Ruby
Raw Normal View History

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