analytics/priv/repo/migrations/20211202094732_remove_tweets.exs
2021-12-02 11:53:29 +02:00

8 lines
124 B
Elixir

defmodule Plausible.Repo.Migrations.RemoveTweets do
use Ecto.Migration
def change do
drop table(:tweets)
end
end