mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 18:51:44 +08:00
8 lines
157 B
Ruby
8 lines
157 B
Ruby
![]() |
# frozen_string_literal: true
|
||
|
|
||
|
class AddAnimatedToUploads < ActiveRecord::Migration[6.0]
|
||
|
def change
|
||
|
add_column :uploads, :animated, :boolean
|
||
|
end
|
||
|
end
|