Files
baclight/db/migrate/20251205145750_create_card_logo_files.rb
Jason Jordan 4fac3b1036
CI / scan_ruby (push) Failing after 10m41s
CI / lint (push) Failing after 7m31s
CI / test (push) Failing after 8m29s
Docker / build-and-test-image (push) Failing after 11m32s
Employers working - onboarding to card print
2026-01-15 11:37:50 -05:00

14 lines
296 B
Ruby

class CreateCardLogoFiles < ActiveRecord::Migration[7.2]
def change
create_table :card_logo_files do |t|
t.string :filename
t.binary :image_data
t.string :content_type
t.string :logo_type
t.boolean :active, default: false
t.timestamps
end
end
end