Add option to modify HTTP pool size
[akkoma] / priv / repo / migrations / 20170320193800_create_user.exs
index 089964a26eaadaf57397008c35941cee51769838..e5f6ac52ee48a3d7baa5a059025b3c2ab9089722 100644 (file)
@@ -3,14 +3,13 @@ defmodule Pleroma.Repo.Migrations.CreatePleroma.User do
 
   def change do
     create_if_not_exists table(:users) do
-      add :email, :string
-      add :password_hash, :string
-      add :name, :string
-      add :nickname, :string
-      add :bio, :string
+      add(:email, :string)
+      add(:password_hash, :string)
+      add(:name, :string)
+      add(:nickname, :string)
+      add(:bio, :string)
 
       timestamps()
     end
-
   end
 end