summaryrefslogtreecommitdiff
path: root/priv/repo/migrations
diff options
context:
space:
mode:
authordtluna <dtluna@openmailbox.org>2017-04-16 17:08:17 +0300
committerdtluna <dtluna@openmailbox.org>2017-04-16 17:08:17 +0300
commit5229b0194477bea6e513d9e8286956a553133545 (patch)
treefb1655e5dd1f06e52da676c7c4026a5997cfd206 /priv/repo/migrations
parent63f04b314d67decefab3a53b43d04b0347adde13 (diff)
parente158e32124a62f2c93a8910bf3edc4519c4a13e6 (diff)
downloadpleroma-5229b0194477bea6e513d9e8286956a553133545.tar.gz
pleroma-5229b0194477bea6e513d9e8286956a553133545.zip
Merge branch 'develop' of ssh.gitgud.io:lambadalambda/pleroma into feature/user-timeline
Diffstat (limited to 'priv/repo/migrations')
-rw-r--r--priv/repo/migrations/20170416122418_add_avatar_object_to_users.exs9
1 files changed, 9 insertions, 0 deletions
diff --git a/priv/repo/migrations/20170416122418_add_avatar_object_to_users.exs b/priv/repo/migrations/20170416122418_add_avatar_object_to_users.exs
new file mode 100644
index 000000000..b6d8742dc
--- /dev/null
+++ b/priv/repo/migrations/20170416122418_add_avatar_object_to_users.exs
@@ -0,0 +1,9 @@
+defmodule Pleroma.Repo.Migrations.AddAvatarObjectToUsers do
+ use Ecto.Migration
+
+ def change do
+ alter table(:users) do
+ add :avatar, :map
+ end
+ end
+end