gitlink-forgeplus/db/migrate/20231121084405_add_uuid_to_...

6 lines
138 B
Ruby

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