summaryrefslogtreecommitdiff
path: root/priv
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2020-07-09 13:09:31 +0000
committerlain <lain@soykaf.club>2020-07-09 13:09:31 +0000
commitf4469dc7419288a46512ea5cae6ffe32de5d47c2 (patch)
tree554899b657aee1e79ec50f58d989ee4089e2b657 /priv
parentbdc7b60610af7e1c9df7f01aa94c8992a3d6a516 (diff)
parent31fef95e35d3cbc2d65c76a57ba8f4047809ce1b (diff)
Merge branch 'features/favicons' into 'develop'
Add support for remote favicons See merge request pleroma/pleroma!2261
Diffstat (limited to 'priv')
-rw-r--r--priv/repo/migrations/20200707112859_instances_add_favicon.exs10
1 files changed, 10 insertions, 0 deletions
diff --git a/priv/repo/migrations/20200707112859_instances_add_favicon.exs b/priv/repo/migrations/20200707112859_instances_add_favicon.exs
new file mode 100644
index 000000000..5538749dc
--- /dev/null
+++ b/priv/repo/migrations/20200707112859_instances_add_favicon.exs
@@ -0,0 +1,10 @@
+defmodule Pleroma.Repo.Migrations.InstancesAddFavicon do
+ use Ecto.Migration
+
+ def change do
+ alter table(:instances) do
+ add(:favicon, :string)
+ add(:favicon_updated_at, :naive_datetime)
+ end
+ end
+end