mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 04:03:45 +08:00
11 lines
245 B
Ruby
Vendored
11 lines
245 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
class UpgradePgvector080 < ActiveRecord::Migration[8.0]
|
|
def up
|
|
# No-op. Migration is failing with "must be owner of extension vector"
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|