mirror of
https://github.com/discourse/discourse.git
synced 2026-08-07 13:19:19 +08:00
73 lines
2 KiB
Ruby
Vendored
73 lines
2 KiB
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
require "migration/table_dropper"
|
|
|
|
class RenameVotingTables < ActiveRecord::Migration[7.0]
|
|
def up
|
|
unless table_exists?(:topic_voting_topic_vote_count)
|
|
Migration::TableDropper.read_only_table(:discourse_voting_topic_vote_count)
|
|
execute <<~SQL
|
|
CREATE TABLE topic_voting_topic_vote_count
|
|
(LIKE discourse_voting_topic_vote_count INCLUDING ALL);
|
|
SQL
|
|
|
|
execute <<~SQL
|
|
INSERT INTO topic_voting_topic_vote_count
|
|
SELECT *
|
|
FROM discourse_voting_topic_vote_count
|
|
SQL
|
|
|
|
execute <<~SQL
|
|
ALTER TABLE topic_voting_topic_vote_count
|
|
ALTER COLUMN id
|
|
SET DEFAULT nextval('discourse_voting_topic_vote_count_id_seq')
|
|
SQL
|
|
|
|
add_index :topic_voting_topic_vote_count, :topic_id, unique: true
|
|
end
|
|
|
|
unless table_exists?(:topic_voting_votes)
|
|
Migration::TableDropper.read_only_table(:discourse_voting_votes)
|
|
execute <<~SQL
|
|
CREATE TABLE topic_voting_votes
|
|
(LIKE discourse_voting_votes INCLUDING ALL);
|
|
SQL
|
|
|
|
execute <<~SQL
|
|
INSERT INTO topic_voting_votes
|
|
SELECT *
|
|
FROM discourse_voting_votes
|
|
SQL
|
|
|
|
execute <<~SQL
|
|
ALTER TABLE topic_voting_votes
|
|
ALTER COLUMN id
|
|
SET DEFAULT nextval('discourse_voting_votes_id_seq')
|
|
SQL
|
|
end
|
|
|
|
unless table_exists?(:topic_voting_category_settings)
|
|
Migration::TableDropper.read_only_table(:discourse_voting_category_settings)
|
|
execute <<~SQL
|
|
CREATE TABLE topic_voting_category_settings
|
|
(LIKE discourse_voting_category_settings INCLUDING ALL);
|
|
SQL
|
|
|
|
execute <<~SQL
|
|
INSERT INTO topic_voting_category_settings
|
|
SELECT *
|
|
FROM discourse_voting_category_settings
|
|
SQL
|
|
|
|
execute <<~SQL
|
|
ALTER TABLE topic_voting_category_settings
|
|
ALTER COLUMN id
|
|
SET DEFAULT nextval('discourse_voting_category_settings_id_seq')
|
|
SQL
|
|
end
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|