Merge branch 'admin-create-users' into 'develop'
[akkoma] / priv / repo / migrations / 20180829183529_remove_recipients_to_and_cc_fields_from_activities.exs
index ed4f5af302021c14455aef1374871afc216da607..017ef161fabb1d5cc7c99ff173af3d101dbfb760 100644 (file)
@@ -1,10 +1,17 @@
 defmodule Pleroma.Repo.Migrations.RemoveRecipientsToAndCcFieldsFromActivities do
   use Ecto.Migration
 
-  def change do
+  def up do
     alter table(:activities) do
       remove :recipients_to
       remove :recipients_cc
     end
   end
+
+  def down do
+    alter table(:activities) do
+      add :recipients_to, {:array, :string}
+      add :recipients_cc, {:array, :string}
+    end
+  end
 end