projects
/
akkoma
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into remake-remodel-dms
[akkoma]
/
priv
/
repo
/
migrations
/
20191017225002_drop_websub_tables.exs
1
defmodule Pleroma.Repo.Migrations.DropWebsubTables do
2
use Ecto.Migration
3
4
def up do
5
drop_if_exists(table(:websub_client_subscriptions))
6
drop_if_exists(table(:websub_server_subscriptions))
7
end
8
9
def down, do: :noop
10
end