10 lines
		
	
	
	
		
			233 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			233 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
defmodule Pleroma.Repo.Migrations.DropWebsubTables do
 | 
						|
  use Ecto.Migration
 | 
						|
 | 
						|
  def up do
 | 
						|
    drop_if_exists(table(:websub_client_subscriptions))
 | 
						|
    drop_if_exists(table(:websub_server_subscriptions))
 | 
						|
  end
 | 
						|
 | 
						|
  def down, do: :noop
 | 
						|
end
 |