From 3ac321079eb342b6cfa146ee955c4a4766c4ea6f Mon Sep 17 00:00:00 2001 From: "byte[]" Date: Wed, 17 Jun 2020 07:49:29 -0400 Subject: [PATCH] migrated --- .../20200617113333_prod_schema_sync2.exs | 94 +++++++++---------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/priv/repo/migrations/20200617113333_prod_schema_sync2.exs b/priv/repo/migrations/20200617113333_prod_schema_sync2.exs index dc5466af..df6207ee 100644 --- a/priv/repo/migrations/20200617113333_prod_schema_sync2.exs +++ b/priv/repo/migrations/20200617113333_prod_schema_sync2.exs @@ -2,52 +2,52 @@ defmodule Philomena.Repo.Migrations.ProdSchemaSync2 do use Ecto.Migration def change do - execute("DROP TABLE ar_internal_metadata;") - execute("ALTER SEQUENCE adverts_id_seq AS BIGINT;") - execute("ALTER SEQUENCE badge_awards_id_seq AS BIGINT;") - execute("ALTER SEQUENCE badges_id_seq AS BIGINT;") - execute("ALTER SEQUENCE channels_id_seq AS BIGINT;") - execute("ALTER SEQUENCE comments_id_seq AS BIGINT;") - execute("ALTER SEQUENCE commission_items_id_seq AS BIGINT;") - execute("ALTER SEQUENCE commissions_id_seq AS BIGINT;") - execute("ALTER SEQUENCE conversations_id_seq AS BIGINT;") - execute("ALTER SEQUENCE dnp_entries_id_seq AS BIGINT;") - execute("ALTER SEQUENCE donations_id_seq AS BIGINT;") - execute("ALTER SEQUENCE duplicate_reports_id_seq AS BIGINT;") - execute("ALTER SEQUENCE filters_id_seq AS BIGINT;") - execute("ALTER SEQUENCE fingerprint_bans_id_seq AS BIGINT;") - execute("ALTER SEQUENCE forums_id_seq AS BIGINT;") - execute("ALTER SEQUENCE galleries_id_seq AS BIGINT;") - execute("ALTER SEQUENCE gallery_interactions_id_seq AS BIGINT;") - execute("ALTER SEQUENCE images_id_seq AS BIGINT;") - execute("ALTER SEQUENCE messages_id_seq AS BIGINT;") - execute("ALTER SEQUENCE mod_notes_id_seq AS BIGINT;") - execute("ALTER SEQUENCE notifications_id_seq AS BIGINT;") - execute("ALTER SEQUENCE poll_options_id_seq AS BIGINT;") - execute("ALTER SEQUENCE poll_votes_id_seq AS BIGINT;") - execute("ALTER SEQUENCE polls_id_seq AS BIGINT;") - execute("ALTER SEQUENCE posts_id_seq AS BIGINT;") - execute("ALTER SEQUENCE reports_id_seq AS BIGINT;") - execute("ALTER SEQUENCE roles_id_seq AS BIGINT;") - execute("ALTER SEQUENCE site_notices_id_seq AS BIGINT;") - execute("ALTER SEQUENCE source_changes_id_seq AS BIGINT;") - execute("ALTER SEQUENCE subnet_bans_id_seq AS BIGINT;") - execute("ALTER SEQUENCE tag_changes_id_seq AS BIGINT;") - execute("ALTER SEQUENCE tags_id_seq AS BIGINT;") - execute("ALTER SEQUENCE topics_id_seq AS BIGINT;") - execute("ALTER SEQUENCE unread_notifications_id_seq AS BIGINT;") - execute("ALTER SEQUENCE user_bans_id_seq AS BIGINT;") - execute("ALTER SEQUENCE user_fingerprints_id_seq AS BIGINT;") - execute("ALTER SEQUENCE user_ips_id_seq AS BIGINT;") - execute("ALTER SEQUENCE user_links_id_seq AS BIGINT;") - execute("ALTER SEQUENCE user_name_changes_id_seq AS BIGINT;") - execute("ALTER SEQUENCE user_statistics_id_seq AS BIGINT;") - execute("ALTER SEQUENCE user_whitelists_id_seq AS BIGINT;") - execute("ALTER SEQUENCE users_id_seq AS BIGINT;") - execute("ALTER SEQUENCE versions_id_seq AS BIGINT;") - execute("CREATE INDEX index_users_on_created_at ON public.users USING btree (created_at);") - execute("CREATE INDEX index_users_on_role ON public.users USING btree (role) WHERE ((role)::text <> 'user'::text);") - execute("DROP INDEX temp_unique_index_tags_on_name;") - execute("DROP INDEX temp_unique_index_tags_on_slug;") + # execute("DROP TABLE ar_internal_metadata;") + # execute("ALTER SEQUENCE adverts_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE badge_awards_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE badges_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE channels_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE comments_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE commission_items_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE commissions_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE conversations_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE dnp_entries_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE donations_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE duplicate_reports_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE filters_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE fingerprint_bans_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE forums_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE galleries_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE gallery_interactions_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE images_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE messages_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE mod_notes_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE notifications_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE poll_options_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE poll_votes_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE polls_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE posts_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE reports_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE roles_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE site_notices_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE source_changes_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE subnet_bans_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE tag_changes_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE tags_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE topics_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE unread_notifications_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE user_bans_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE user_fingerprints_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE user_ips_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE user_links_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE user_name_changes_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE user_statistics_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE user_whitelists_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE users_id_seq AS BIGINT;") + # execute("ALTER SEQUENCE versions_id_seq AS BIGINT;") + # execute("CREATE INDEX index_users_on_created_at ON public.users USING btree (created_at);") + # execute("CREATE INDEX index_users_on_role ON public.users USING btree (role) WHERE ((role)::text <> 'user'::text);") + # execute("DROP INDEX temp_unique_index_tags_on_name;") + # execute("DROP INDEX temp_unique_index_tags_on_slug;") end end