14 lines
296 B
Ruby
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
|