summaryrefslogtreecommitdiff
path: root/internal/db/bundb/migrations
diff options
context:
space:
mode:
Diffstat (limited to 'internal/db/bundb/migrations')
-rw-r--r--internal/db/bundb/migrations/20211113114307_init.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/account.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/application.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/block.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/client.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/domainblock.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/emaildomainblock.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/emoji.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/follow.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/followrequest.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/instance.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/mediaattachment.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/mention.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/notification.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/routersession.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/status.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/statusbookmark.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/statusfave.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/statusmute.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/tag.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/token.go2
-rw-r--r--internal/db/bundb/migrations/20211113114307_init/user.go2
-rw-r--r--internal/db/bundb/migrations/20220214175650_media_cleanup.go2
-rw-r--r--internal/db/bundb/migrations/20220214175650_media_cleanup/account.go2
-rw-r--r--internal/db/bundb/migrations/20220214175650_media_cleanup/mediaattachment.go2
-rw-r--r--internal/db/bundb/migrations/20220305130328_database_optimizations.go2
-rw-r--r--internal/db/bundb/migrations/20220315160814_admin_account_actions.go2
-rw-r--r--internal/db/bundb/migrations/20220315160814_admin_account_actions/account.go2
-rw-r--r--internal/db/bundb/migrations/20220315160814_admin_account_actions/admin.go2
-rw-r--r--internal/db/bundb/migrations/20220315160814_admin_account_actions/mediaattachment.go2
-rw-r--r--internal/db/bundb/migrations/20220502113806_add_missing_indexes.go2
-rw-r--r--internal/db/bundb/migrations/20220506110822_add_account_raw_note.go2
-rw-r--r--internal/db/bundb/migrations/20220511165212_add_account_raw_note_fix.go2
-rw-r--r--internal/db/bundb/migrations/20220518123621_additional_indexing.go2
-rw-r--r--internal/db/bundb/migrations/20220612091800_duplicated_media_cleanup.go2
-rw-r--r--internal/db/bundb/migrations/20220710153020_fix_slow_web_profile_queries.go2
-rw-r--r--internal/db/bundb/migrations/20220804120132_account_default_post_format.go2
-rw-r--r--internal/db/bundb/migrations/20220823140228_user_custom_css.go2
-rw-r--r--internal/db/bundb/migrations/20220827085121_assign_missing_in_reply_to_uris.go2
-rw-r--r--internal/db/bundb/migrations/20220830014732_regenerate_indexes_for_follows.go2
-rw-r--r--internal/db/bundb/migrations/20220903141016_store_gifs_as_image.go2
-rw-r--r--internal/db/bundb/migrations/20220905150505_custom_emoji_updates.go4
-rw-r--r--internal/db/bundb/migrations/20220905150505_custom_emoji_updates/emoji.go2
-rw-r--r--internal/db/bundb/migrations/20220916122701_emojis_in_accounts.go2
-rw-r--r--internal/db/bundb/migrations/20220922142408_shared_inbox_delivery.go2
-rw-r--r--internal/db/bundb/migrations/20220926115233_indexes.go2
-rw-r--r--internal/db/bundb/migrations/20221006114842_add_rss_functionality.go2
-rw-r--r--internal/db/bundb/migrations/20221011125732_refetch_updated_emojis.go2
-rw-r--r--internal/db/bundb/migrations/20221031145649_emoji_categories.go2
-rw-r--r--internal/db/bundb/migrations/20221103203553_add_external_id.go2
-rw-r--r--internal/db/bundb/migrations/20221108142419_create_account_tombstones.go2
-rw-r--r--internal/db/bundb/migrations/20221220134514_mp4_jiggery_pokery.go2
-rw-r--r--internal/db/bundb/migrations/README.md2
-rw-r--r--internal/db/bundb/migrations/main.go2
54 files changed, 55 insertions, 55 deletions
diff --git a/internal/db/bundb/migrations/20211113114307_init.go b/internal/db/bundb/migrations/20211113114307_init.go
index 78065d700..3c807aeff 100644
--- a/internal/db/bundb/migrations/20211113114307_init.go
+++ b/internal/db/bundb/migrations/20211113114307_init.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/account.go b/internal/db/bundb/migrations/20211113114307_init/account.go
index ecbeed63d..ea247695b 100644
--- a/internal/db/bundb/migrations/20211113114307_init/account.go
+++ b/internal/db/bundb/migrations/20211113114307_init/account.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/application.go b/internal/db/bundb/migrations/20211113114307_init/application.go
index e10fc9c8c..cea3037c2 100644
--- a/internal/db/bundb/migrations/20211113114307_init/application.go
+++ b/internal/db/bundb/migrations/20211113114307_init/application.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/block.go b/internal/db/bundb/migrations/20211113114307_init/block.go
index ab1d37943..89f3086a2 100644
--- a/internal/db/bundb/migrations/20211113114307_init/block.go
+++ b/internal/db/bundb/migrations/20211113114307_init/block.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/client.go b/internal/db/bundb/migrations/20211113114307_init/client.go
index d8cb3eaf9..f3a9ded21 100644
--- a/internal/db/bundb/migrations/20211113114307_init/client.go
+++ b/internal/db/bundb/migrations/20211113114307_init/client.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/domainblock.go b/internal/db/bundb/migrations/20211113114307_init/domainblock.go
index 5782b851d..7fdf94a85 100644
--- a/internal/db/bundb/migrations/20211113114307_init/domainblock.go
+++ b/internal/db/bundb/migrations/20211113114307_init/domainblock.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/emaildomainblock.go b/internal/db/bundb/migrations/20211113114307_init/emaildomainblock.go
index 098b53e3e..2eb76b8a9 100644
--- a/internal/db/bundb/migrations/20211113114307_init/emaildomainblock.go
+++ b/internal/db/bundb/migrations/20211113114307_init/emaildomainblock.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/emoji.go b/internal/db/bundb/migrations/20211113114307_init/emoji.go
index cef8dd02e..0f3f83e77 100644
--- a/internal/db/bundb/migrations/20211113114307_init/emoji.go
+++ b/internal/db/bundb/migrations/20211113114307_init/emoji.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/follow.go b/internal/db/bundb/migrations/20211113114307_init/follow.go
index 15f01cfd2..9ee785440 100644
--- a/internal/db/bundb/migrations/20211113114307_init/follow.go
+++ b/internal/db/bundb/migrations/20211113114307_init/follow.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/followrequest.go b/internal/db/bundb/migrations/20211113114307_init/followrequest.go
index 4f7c8b807..642f2bfe1 100644
--- a/internal/db/bundb/migrations/20211113114307_init/followrequest.go
+++ b/internal/db/bundb/migrations/20211113114307_init/followrequest.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/instance.go b/internal/db/bundb/migrations/20211113114307_init/instance.go
index 72cf00233..627e22cca 100644
--- a/internal/db/bundb/migrations/20211113114307_init/instance.go
+++ b/internal/db/bundb/migrations/20211113114307_init/instance.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/mediaattachment.go b/internal/db/bundb/migrations/20211113114307_init/mediaattachment.go
index c2f27d9c4..7e1ac996f 100644
--- a/internal/db/bundb/migrations/20211113114307_init/mediaattachment.go
+++ b/internal/db/bundb/migrations/20211113114307_init/mediaattachment.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/mention.go b/internal/db/bundb/migrations/20211113114307_init/mention.go
index e00df8911..a295b0afa 100644
--- a/internal/db/bundb/migrations/20211113114307_init/mention.go
+++ b/internal/db/bundb/migrations/20211113114307_init/mention.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/notification.go b/internal/db/bundb/migrations/20211113114307_init/notification.go
index 6a5ee06ef..2fa0fe91e 100644
--- a/internal/db/bundb/migrations/20211113114307_init/notification.go
+++ b/internal/db/bundb/migrations/20211113114307_init/notification.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/routersession.go b/internal/db/bundb/migrations/20211113114307_init/routersession.go
index 208425ac8..3cef344da 100644
--- a/internal/db/bundb/migrations/20211113114307_init/routersession.go
+++ b/internal/db/bundb/migrations/20211113114307_init/routersession.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/status.go b/internal/db/bundb/migrations/20211113114307_init/status.go
index e80924ca3..c6d0c53a8 100644
--- a/internal/db/bundb/migrations/20211113114307_init/status.go
+++ b/internal/db/bundb/migrations/20211113114307_init/status.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/statusbookmark.go b/internal/db/bundb/migrations/20211113114307_init/statusbookmark.go
index 9e146594c..b22c28e83 100644
--- a/internal/db/bundb/migrations/20211113114307_init/statusbookmark.go
+++ b/internal/db/bundb/migrations/20211113114307_init/statusbookmark.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/statusfave.go b/internal/db/bundb/migrations/20211113114307_init/statusfave.go
index 07be1f725..dc0115e54 100644
--- a/internal/db/bundb/migrations/20211113114307_init/statusfave.go
+++ b/internal/db/bundb/migrations/20211113114307_init/statusfave.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/statusmute.go b/internal/db/bundb/migrations/20211113114307_init/statusmute.go
index 4810f8c5a..2e7ac63a8 100644
--- a/internal/db/bundb/migrations/20211113114307_init/statusmute.go
+++ b/internal/db/bundb/migrations/20211113114307_init/statusmute.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/tag.go b/internal/db/bundb/migrations/20211113114307_init/tag.go
index c73555311..c02feff31 100644
--- a/internal/db/bundb/migrations/20211113114307_init/tag.go
+++ b/internal/db/bundb/migrations/20211113114307_init/tag.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/token.go b/internal/db/bundb/migrations/20211113114307_init/token.go
index 8ccf70f32..5d368ca36 100644
--- a/internal/db/bundb/migrations/20211113114307_init/token.go
+++ b/internal/db/bundb/migrations/20211113114307_init/token.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20211113114307_init/user.go b/internal/db/bundb/migrations/20211113114307_init/user.go
index 929939572..f04dc89f5 100644
--- a/internal/db/bundb/migrations/20211113114307_init/user.go
+++ b/internal/db/bundb/migrations/20211113114307_init/user.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220214175650_media_cleanup.go b/internal/db/bundb/migrations/20220214175650_media_cleanup.go
index c7734e6e7..654fb097e 100644
--- a/internal/db/bundb/migrations/20220214175650_media_cleanup.go
+++ b/internal/db/bundb/migrations/20220214175650_media_cleanup.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220214175650_media_cleanup/account.go b/internal/db/bundb/migrations/20220214175650_media_cleanup/account.go
index 0b456339a..ba02e4e9d 100644
--- a/internal/db/bundb/migrations/20220214175650_media_cleanup/account.go
+++ b/internal/db/bundb/migrations/20220214175650_media_cleanup/account.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220214175650_media_cleanup/mediaattachment.go b/internal/db/bundb/migrations/20220214175650_media_cleanup/mediaattachment.go
index 7081c730b..c99e310ca 100644
--- a/internal/db/bundb/migrations/20220214175650_media_cleanup/mediaattachment.go
+++ b/internal/db/bundb/migrations/20220214175650_media_cleanup/mediaattachment.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220305130328_database_optimizations.go b/internal/db/bundb/migrations/20220305130328_database_optimizations.go
index b6a19cac8..d4c9350c3 100644
--- a/internal/db/bundb/migrations/20220305130328_database_optimizations.go
+++ b/internal/db/bundb/migrations/20220305130328_database_optimizations.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220315160814_admin_account_actions.go b/internal/db/bundb/migrations/20220315160814_admin_account_actions.go
index 479074f3e..6df8fcbeb 100644
--- a/internal/db/bundb/migrations/20220315160814_admin_account_actions.go
+++ b/internal/db/bundb/migrations/20220315160814_admin_account_actions.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220315160814_admin_account_actions/account.go b/internal/db/bundb/migrations/20220315160814_admin_account_actions/account.go
index 0b456339a..ba02e4e9d 100644
--- a/internal/db/bundb/migrations/20220315160814_admin_account_actions/account.go
+++ b/internal/db/bundb/migrations/20220315160814_admin_account_actions/account.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220315160814_admin_account_actions/admin.go b/internal/db/bundb/migrations/20220315160814_admin_account_actions/admin.go
index 4a79e263e..12718a0f1 100644
--- a/internal/db/bundb/migrations/20220315160814_admin_account_actions/admin.go
+++ b/internal/db/bundb/migrations/20220315160814_admin_account_actions/admin.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220315160814_admin_account_actions/mediaattachment.go b/internal/db/bundb/migrations/20220315160814_admin_account_actions/mediaattachment.go
index b29d718ad..eacee7124 100644
--- a/internal/db/bundb/migrations/20220315160814_admin_account_actions/mediaattachment.go
+++ b/internal/db/bundb/migrations/20220315160814_admin_account_actions/mediaattachment.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220502113806_add_missing_indexes.go b/internal/db/bundb/migrations/20220502113806_add_missing_indexes.go
index 0862a3f7e..b1096b0d7 100644
--- a/internal/db/bundb/migrations/20220502113806_add_missing_indexes.go
+++ b/internal/db/bundb/migrations/20220502113806_add_missing_indexes.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220506110822_add_account_raw_note.go b/internal/db/bundb/migrations/20220506110822_add_account_raw_note.go
index f56ad4ff0..efbf85baf 100644
--- a/internal/db/bundb/migrations/20220506110822_add_account_raw_note.go
+++ b/internal/db/bundb/migrations/20220506110822_add_account_raw_note.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220511165212_add_account_raw_note_fix.go b/internal/db/bundb/migrations/20220511165212_add_account_raw_note_fix.go
index f56ad4ff0..efbf85baf 100644
--- a/internal/db/bundb/migrations/20220511165212_add_account_raw_note_fix.go
+++ b/internal/db/bundb/migrations/20220511165212_add_account_raw_note_fix.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220518123621_additional_indexing.go b/internal/db/bundb/migrations/20220518123621_additional_indexing.go
index d835fb15b..f6021e3c0 100644
--- a/internal/db/bundb/migrations/20220518123621_additional_indexing.go
+++ b/internal/db/bundb/migrations/20220518123621_additional_indexing.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220612091800_duplicated_media_cleanup.go b/internal/db/bundb/migrations/20220612091800_duplicated_media_cleanup.go
index bde96a86c..9537a63d9 100644
--- a/internal/db/bundb/migrations/20220612091800_duplicated_media_cleanup.go
+++ b/internal/db/bundb/migrations/20220612091800_duplicated_media_cleanup.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220710153020_fix_slow_web_profile_queries.go b/internal/db/bundb/migrations/20220710153020_fix_slow_web_profile_queries.go
index d1d4c6ac2..087c8c5f7 100644
--- a/internal/db/bundb/migrations/20220710153020_fix_slow_web_profile_queries.go
+++ b/internal/db/bundb/migrations/20220710153020_fix_slow_web_profile_queries.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220804120132_account_default_post_format.go b/internal/db/bundb/migrations/20220804120132_account_default_post_format.go
index 36e47f73b..e5faa5bd6 100644
--- a/internal/db/bundb/migrations/20220804120132_account_default_post_format.go
+++ b/internal/db/bundb/migrations/20220804120132_account_default_post_format.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220823140228_user_custom_css.go b/internal/db/bundb/migrations/20220823140228_user_custom_css.go
index 12b093729..3bdaef867 100644
--- a/internal/db/bundb/migrations/20220823140228_user_custom_css.go
+++ b/internal/db/bundb/migrations/20220823140228_user_custom_css.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220827085121_assign_missing_in_reply_to_uris.go b/internal/db/bundb/migrations/20220827085121_assign_missing_in_reply_to_uris.go
index 29a5ee4a8..bfb22ca6a 100644
--- a/internal/db/bundb/migrations/20220827085121_assign_missing_in_reply_to_uris.go
+++ b/internal/db/bundb/migrations/20220827085121_assign_missing_in_reply_to_uris.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220830014732_regenerate_indexes_for_follows.go b/internal/db/bundb/migrations/20220830014732_regenerate_indexes_for_follows.go
index 259d757f0..14814facf 100644
--- a/internal/db/bundb/migrations/20220830014732_regenerate_indexes_for_follows.go
+++ b/internal/db/bundb/migrations/20220830014732_regenerate_indexes_for_follows.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220903141016_store_gifs_as_image.go b/internal/db/bundb/migrations/20220903141016_store_gifs_as_image.go
index 2786e205a..16259b6bb 100644
--- a/internal/db/bundb/migrations/20220903141016_store_gifs_as_image.go
+++ b/internal/db/bundb/migrations/20220903141016_store_gifs_as_image.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220905150505_custom_emoji_updates.go b/internal/db/bundb/migrations/20220905150505_custom_emoji_updates.go
index 71df49692..944b7c3b4 100644
--- a/internal/db/bundb/migrations/20220905150505_custom_emoji_updates.go
+++ b/internal/db/bundb/migrations/20220905150505_custom_emoji_updates.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
@@ -22,7 +22,7 @@ import (
"context"
"database/sql"
- "github.com/superseriousbusiness/gotosocial/internal/db/bundb/migrations/20220905150505_custom_emoji_updates"
+ gtsmodel "github.com/superseriousbusiness/gotosocial/internal/db/bundb/migrations/20211113114307_init"
"github.com/uptrace/bun"
)
diff --git a/internal/db/bundb/migrations/20220905150505_custom_emoji_updates/emoji.go b/internal/db/bundb/migrations/20220905150505_custom_emoji_updates/emoji.go
index 08fc5e5f3..df363839e 100644
--- a/internal/db/bundb/migrations/20220905150505_custom_emoji_updates/emoji.go
+++ b/internal/db/bundb/migrations/20220905150505_custom_emoji_updates/emoji.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220916122701_emojis_in_accounts.go b/internal/db/bundb/migrations/20220916122701_emojis_in_accounts.go
index 91468a4c9..c72fc830e 100644
--- a/internal/db/bundb/migrations/20220916122701_emojis_in_accounts.go
+++ b/internal/db/bundb/migrations/20220916122701_emojis_in_accounts.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220922142408_shared_inbox_delivery.go b/internal/db/bundb/migrations/20220922142408_shared_inbox_delivery.go
index d0449af86..5b2916bb3 100644
--- a/internal/db/bundb/migrations/20220922142408_shared_inbox_delivery.go
+++ b/internal/db/bundb/migrations/20220922142408_shared_inbox_delivery.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20220926115233_indexes.go b/internal/db/bundb/migrations/20220926115233_indexes.go
index adf3cd7ab..f567e3c40 100644
--- a/internal/db/bundb/migrations/20220926115233_indexes.go
+++ b/internal/db/bundb/migrations/20220926115233_indexes.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20221006114842_add_rss_functionality.go b/internal/db/bundb/migrations/20221006114842_add_rss_functionality.go
index 94c21fe58..c817ea4f2 100644
--- a/internal/db/bundb/migrations/20221006114842_add_rss_functionality.go
+++ b/internal/db/bundb/migrations/20221006114842_add_rss_functionality.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20221011125732_refetch_updated_emojis.go b/internal/db/bundb/migrations/20221011125732_refetch_updated_emojis.go
index 28ba41a3a..eb92ac3ec 100644
--- a/internal/db/bundb/migrations/20221011125732_refetch_updated_emojis.go
+++ b/internal/db/bundb/migrations/20221011125732_refetch_updated_emojis.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20221031145649_emoji_categories.go b/internal/db/bundb/migrations/20221031145649_emoji_categories.go
index 02e4a1f3a..55c0d6d63 100644
--- a/internal/db/bundb/migrations/20221031145649_emoji_categories.go
+++ b/internal/db/bundb/migrations/20221031145649_emoji_categories.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20221103203553_add_external_id.go b/internal/db/bundb/migrations/20221103203553_add_external_id.go
index dab5c01fc..a688b363d 100644
--- a/internal/db/bundb/migrations/20221103203553_add_external_id.go
+++ b/internal/db/bundb/migrations/20221103203553_add_external_id.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20221108142419_create_account_tombstones.go b/internal/db/bundb/migrations/20221108142419_create_account_tombstones.go
index 9f0b7b8e9..015b13138 100644
--- a/internal/db/bundb/migrations/20221108142419_create_account_tombstones.go
+++ b/internal/db/bundb/migrations/20221108142419_create_account_tombstones.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/20221220134514_mp4_jiggery_pokery.go b/internal/db/bundb/migrations/20221220134514_mp4_jiggery_pokery.go
index ecccea08b..797267d1f 100644
--- a/internal/db/bundb/migrations/20221220134514_mp4_jiggery_pokery.go
+++ b/internal/db/bundb/migrations/20221220134514_mp4_jiggery_pokery.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/README.md b/internal/db/bundb/migrations/README.md
index e737226c2..31fc2c704 100644
--- a/internal/db/bundb/migrations/README.md
+++ b/internal/db/bundb/migrations/README.md
@@ -9,7 +9,7 @@ As a template, take one of the existing migration files and modify it, or use th
```go
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/db/bundb/migrations/main.go b/internal/db/bundb/migrations/main.go
index af43856fe..9a2a4fbe4 100644
--- a/internal/db/bundb/migrations/main.go
+++ b/internal/db/bundb/migrations/main.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by