Files
gitlink-forgeplus/db/migrate/20231121084405_add_uuid_to_attachments.rb
T
呱呱呱 2985dc7902 add uuid
2023-11-21 17:06:43 +08:00

6 lines
138 B
Ruby

class AddUuidToAttachments < ActiveRecord::Migration[5.2]
def change
add_column :attachments, :uuid, :string, index: true
end
end