mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 02:23:39 +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
|