akkoma/priv/repo/migrations/20190301101154_add_default_...

10 lines
202 B
Elixir

defmodule Pleroma.Repo.Migrations.AddDefaultTagsToUser do
use Ecto.Migration
def up do
execute("UPDATE users SET tags = array[]::varchar[] where tags IS NULL")
end
def down, do: :noop
end