mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 12:28:59 +08:00
6 lines
124 B
Ruby
6 lines
124 B
Ruby
|
class AddImageToBadges < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :badges, :image, :string, limit: 255
|
||
|
end
|
||
|
end
|