summaryrefslogtreecommitdiff
path: root/internal/db
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2021-12-20 18:42:19 +0100
committerLibravatar GitHub <noreply@github.com>2021-12-20 18:42:19 +0100
commitef5a9256a8fc35e644cc48734f39c84a8957de86 (patch)
tree5cda77185465d46fb5e3cb12f9066f2506a58846 /internal/db
parentRemove unnecessary storage config variables (#344) (diff)
downloadgotosocial-ef5a9256a8fc35e644cc48734f39c84a8957de86.tar.xz
Extend license notices to 2022 (#354)
Diffstat (limited to 'internal/db')
-rw-r--r--internal/db/account.go2
-rw-r--r--internal/db/admin.go2
-rw-r--r--internal/db/basic.go2
-rw-r--r--internal/db/bundb/account.go2
-rw-r--r--internal/db/bundb/account_test.go2
-rw-r--r--internal/db/bundb/admin.go2
-rw-r--r--internal/db/bundb/admin_test.go2
-rw-r--r--internal/db/bundb/basic.go2
-rw-r--r--internal/db/bundb/basic_test.go2
-rw-r--r--internal/db/bundb/bundb.go2
-rw-r--r--internal/db/bundb/bundb_test.go2
-rw-r--r--internal/db/bundb/domain.go2
-rw-r--r--internal/db/bundb/instance.go2
-rw-r--r--internal/db/bundb/media.go2
-rw-r--r--internal/db/bundb/mention.go2
-rw-r--r--internal/db/bundb/mention_test.go2
-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/README.md2
-rw-r--r--internal/db/bundb/migrations/main.go2
-rw-r--r--internal/db/bundb/notification.go2
-rw-r--r--internal/db/bundb/relationship.go2
-rw-r--r--internal/db/bundb/relationship_test.go2
-rw-r--r--internal/db/bundb/session.go2
-rw-r--r--internal/db/bundb/session_test.go2
-rw-r--r--internal/db/bundb/status.go2
-rw-r--r--internal/db/bundb/status_test.go2
-rw-r--r--internal/db/bundb/timeline.go2
-rw-r--r--internal/db/bundb/timeline_test.go2
-rw-r--r--internal/db/bundb/trace.go2
-rw-r--r--internal/db/bundb/util.go2
-rw-r--r--internal/db/db.go2
-rw-r--r--internal/db/domain.go2
-rw-r--r--internal/db/error.go2
-rw-r--r--internal/db/instance.go2
-rw-r--r--internal/db/media.go2
-rw-r--r--internal/db/mention.go2
-rw-r--r--internal/db/notification.go2
-rw-r--r--internal/db/params.go2
-rw-r--r--internal/db/relationship.go2
-rw-r--r--internal/db/session.go2
-rw-r--r--internal/db/status.go2
-rw-r--r--internal/db/timeline.go2
63 files changed, 63 insertions, 63 deletions
diff --git a/internal/db/account.go b/internal/db/account.go
index 0d52ce39d..0a6f1bb48 100644
--- a/internal/db/account.go
+++ b/internal/db/account.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/admin.go b/internal/db/admin.go
index 24d628e84..d8c693e04 100644
--- a/internal/db/admin.go
+++ b/internal/db/admin.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/basic.go b/internal/db/basic.go
index 44000ef24..07f04eae3 100644
--- a/internal/db/basic.go
+++ b/internal/db/basic.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/account.go b/internal/db/bundb/account.go
index ab6ec2b7c..9fc588207 100644
--- a/internal/db/bundb/account.go
+++ b/internal/db/bundb/account.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/account_test.go b/internal/db/bundb/account_test.go
index 11e31b731..90824416d 100644
--- a/internal/db/bundb/account_test.go
+++ b/internal/db/bundb/account_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/admin.go b/internal/db/bundb/admin.go
index 59703ddcc..37c0db6d3 100644
--- a/internal/db/bundb/admin.go
+++ b/internal/db/bundb/admin.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/admin_test.go b/internal/db/bundb/admin_test.go
index 74a8c2b7d..22041087a 100644
--- a/internal/db/bundb/admin_test.go
+++ b/internal/db/bundb/admin_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/basic.go b/internal/db/bundb/basic.go
index a4cff4202..1e03fab72 100644
--- a/internal/db/bundb/basic.go
+++ b/internal/db/bundb/basic.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/basic_test.go b/internal/db/bundb/basic_test.go
index 3c9eb8a86..cb93be877 100644
--- a/internal/db/bundb/basic_test.go
+++ b/internal/db/bundb/basic_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/bundb.go b/internal/db/bundb/bundb.go
index bb159fad8..19414b758 100644
--- a/internal/db/bundb/bundb.go
+++ b/internal/db/bundb/bundb.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/bundb_test.go b/internal/db/bundb/bundb_test.go
index 70fd58422..62610237e 100644
--- a/internal/db/bundb/bundb_test.go
+++ b/internal/db/bundb/bundb_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/domain.go b/internal/db/bundb/domain.go
index 9e6aa968d..417b2becd 100644
--- a/internal/db/bundb/domain.go
+++ b/internal/db/bundb/domain.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/instance.go b/internal/db/bundb/instance.go
index 4c47a96f4..05e9116b2 100644
--- a/internal/db/bundb/instance.go
+++ b/internal/db/bundb/instance.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/media.go b/internal/db/bundb/media.go
index 5ea995a2d..f24ea0407 100644
--- a/internal/db/bundb/media.go
+++ b/internal/db/bundb/media.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/mention.go b/internal/db/bundb/mention.go
index f38b02a22..a93a5cef6 100644
--- a/internal/db/bundb/mention.go
+++ b/internal/db/bundb/mention.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/mention_test.go b/internal/db/bundb/mention_test.go
index 052254a67..c5e9960fd 100644
--- a/internal/db/bundb/mention_test.go
+++ b/internal/db/bundb/mention_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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.go b/internal/db/bundb/migrations/20211113114307_init.go
index d72350d2d..78065d700 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 67a7e435a..ecbeed63d 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 29058426a..e10fc9c8c 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 5a9b59c2c..ab1d37943 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 20ca03897..d8cb3eaf9 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 da3368e0c..5782b851d 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 43a6ce2be..098b53e3e 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 7db8c694c..860eb46c8 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 dc54970dd..15f01cfd2 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 aad25e688..4f7c8b807 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 4193a44e2..72cf00233 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 5d4af8e68..c2f27d9c4 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 81b9b9e72..e00df8911 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 013e8ba35..6a5ee06ef 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 34c1744bd..208425ac8 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 e0c339659..e80924ca3 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 73a22aeba..9e146594c 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 72a98bd17..07be1f725 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 849a28c82..4810f8c5a 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 0bb9daf0b..c73555311 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 19779c100..8ccf70f32 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 481e126b1..929939572 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 06397b71b..e737226c2 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 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 7f4e76027..318f9be3f 100644
--- a/internal/db/bundb/migrations/main.go
+++ b/internal/db/bundb/migrations/main.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/notification.go b/internal/db/bundb/notification.go
index e9203c030..35b7e32af 100644
--- a/internal/db/bundb/notification.go
+++ b/internal/db/bundb/notification.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/relationship.go b/internal/db/bundb/relationship.go
index f8d1bccbe..369553205 100644
--- a/internal/db/bundb/relationship.go
+++ b/internal/db/bundb/relationship.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/relationship_test.go b/internal/db/bundb/relationship_test.go
index 0a38462d2..bb0f0e3da 100644
--- a/internal/db/bundb/relationship_test.go
+++ b/internal/db/bundb/relationship_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/session.go b/internal/db/bundb/session.go
index 60e582abd..9138072e1 100644
--- a/internal/db/bundb/session.go
+++ b/internal/db/bundb/session.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/session_test.go b/internal/db/bundb/session_test.go
index b2a062b19..ef508bde8 100644
--- a/internal/db/bundb/session_test.go
+++ b/internal/db/bundb/session_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/status.go b/internal/db/bundb/status.go
index 8c157e77a..d564ed528 100644
--- a/internal/db/bundb/status.go
+++ b/internal/db/bundb/status.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/status_test.go b/internal/db/bundb/status_test.go
index 64079c78f..3245314f8 100644
--- a/internal/db/bundb/status_test.go
+++ b/internal/db/bundb/status_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/timeline.go b/internal/db/bundb/timeline.go
index bb81d56cb..ca5922532 100644
--- a/internal/db/bundb/timeline.go
+++ b/internal/db/bundb/timeline.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/timeline_test.go b/internal/db/bundb/timeline_test.go
index d88abd237..2e991ac93 100644
--- a/internal/db/bundb/timeline_test.go
+++ b/internal/db/bundb/timeline_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/trace.go b/internal/db/bundb/trace.go
index 31f64cd36..3726506a9 100644
--- a/internal/db/bundb/trace.go
+++ b/internal/db/bundb/trace.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/util.go b/internal/db/bundb/util.go
index 459f65d8c..58d06d605 100644
--- a/internal/db/bundb/util.go
+++ b/internal/db/bundb/util.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/db.go b/internal/db/db.go
index 9a93322cb..151cc1f97 100644
--- a/internal/db/db.go
+++ b/internal/db/db.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/domain.go b/internal/db/domain.go
index df50a6770..b92705483 100644
--- a/internal/db/domain.go
+++ b/internal/db/domain.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/error.go b/internal/db/error.go
index c13bd78dd..984f96401 100644
--- a/internal/db/error.go
+++ b/internal/db/error.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/instance.go b/internal/db/instance.go
index dcd978a81..45ff7d7b4 100644
--- a/internal/db/instance.go
+++ b/internal/db/instance.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/media.go b/internal/db/media.go
index b779dd276..b8c84e133 100644
--- a/internal/db/media.go
+++ b/internal/db/media.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/mention.go b/internal/db/mention.go
index b9b45546a..7aa13d287 100644
--- a/internal/db/mention.go
+++ b/internal/db/mention.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/notification.go b/internal/db/notification.go
index 09c17f031..d8291ae51 100644
--- a/internal/db/notification.go
+++ b/internal/db/notification.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/params.go b/internal/db/params.go
index dbbf734a1..d1809f1c4 100644
--- a/internal/db/params.go
+++ b/internal/db/params.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/relationship.go b/internal/db/relationship.go
index ac2df5228..3dfc3dcc3 100644
--- a/internal/db/relationship.go
+++ b/internal/db/relationship.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/session.go b/internal/db/session.go
index 1a547b36b..52e69aa66 100644
--- a/internal/db/session.go
+++ b/internal/db/session.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/status.go b/internal/db/status.go
index f26f8942e..74eb0d4ff 100644
--- a/internal/db/status.go
+++ b/internal/db/status.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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/timeline.go b/internal/db/timeline.go
index 83fb3a959..58b5b3a21 100644
--- a/internal/db/timeline.go
+++ b/internal/db/timeline.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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