13 lines
251 B
Ruby
13 lines
251 B
Ruby
|
|
class CreateCardLogoFiles < ActiveRecord::Migration[7.2]
|
||
|
|
def change
|
||
|
|
create_table :card_logo_files do |t|
|
||
|
|
t.string :filename
|
||
|
|
t.string :logo_type
|
||
|
|
t.binary :image
|
||
|
|
t.integer :pl_plan_key
|
||
|
|
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|