mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 04:03:45 +08:00
This promotes all post-migrations which existed in `v2026.1` to regular pre-deploy migrations. We do this after each stable/esr release to reduce the probability of pre/post deploy timing issues.
10 lines
259 B
Ruby
Vendored
10 lines
259 B
Ruby
Vendored
# frozen_string_literal: true
|
|
class DropOldEmbeddingTables < ActiveRecord::Migration[7.2]
|
|
def up
|
|
# Copy rag embeddings created during deploy.
|
|
# noop. TODO(roman): Will follow-up with a new migration to drop these tables.
|
|
end
|
|
|
|
def down
|
|
end
|
|
end
|