2025-12-10 13:22:33 -05:00
|
|
|
class CreateCardLogoFiles < ActiveRecord::Migration[7.2]
|
|
|
|
|
def change
|
|
|
|
|
create_table :card_logo_files do |t|
|
|
|
|
|
t.string :filename
|
2026-01-15 11:37:50 -05:00
|
|
|
t.binary :image_data
|
|
|
|
|
t.string :content_type
|
2025-12-10 13:22:33 -05:00
|
|
|
t.string :logo_type
|
2026-01-15 11:37:50 -05:00
|
|
|
t.boolean :active, default: false
|
2025-12-10 13:22:33 -05:00
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|