forked from AkkomaGang/akkoma
Merge branch 'fix/warnings-in-migration' into 'develop'
Remove unused imports and aliases from migration Closes #964 See merge request pleroma/pleroma!1263
This commit is contained in:
commit
70edcd1386
1 changed files with 0 additions and 20 deletions
|
@ -1,30 +1,10 @@
|
||||||
defmodule Pleroma.Repo.Migrations.AddFollowerAddressToUser do
|
defmodule Pleroma.Repo.Migrations.AddFollowerAddressToUser do
|
||||||
use Ecto.Migration
|
use Ecto.Migration
|
||||||
import Ecto.Query
|
|
||||||
import Supervisor.Spec
|
|
||||||
alias Pleroma.{Repo, User}
|
|
||||||
|
|
||||||
def up do
|
def up do
|
||||||
alter table(:users) do
|
alter table(:users) do
|
||||||
add :follower_address, :string, unique: true
|
add :follower_address, :string, unique: true
|
||||||
end
|
end
|
||||||
|
|
||||||
# Not needed anymore for new setups.
|
|
||||||
# flush()
|
|
||||||
|
|
||||||
# children = [
|
|
||||||
# # Start the endpoint when the application starts
|
|
||||||
# supervisor(Pleroma.Web.Endpoint, [])
|
|
||||||
# ]
|
|
||||||
# opts = [strategy: :one_for_one, name: Pleroma.Supervisor]
|
|
||||||
# Supervisor.start_link(children, opts)
|
|
||||||
|
|
||||||
# Enum.each(Repo.all(User), fn (user) ->
|
|
||||||
# if !user.follower_address do
|
|
||||||
# cs = Ecto.Changeset.change(user, %{follower_address: User.ap_followers(user)})
|
|
||||||
# Repo.update!(cs)
|
|
||||||
# end
|
|
||||||
# end)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def down do
|
def down do
|
||||||
|
|
Loading…
Reference in a new issue