mirror of
https://github.com/discourse/discourse.git
synced 2024-12-16 15:53:46 +08:00
6 lines
117 B
Ruby
6 lines
117 B
Ruby
|
class AddImageUrlToPosts < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :posts, :image_url, :string
|
||
|
end
|
||
|
end
|