analytics/priv/repo/migrations/20211202094732_remove_tweets.exs

8 lines
124 B
Elixir
Raw Normal View History

2021-12-02 12:53:29 +03:00
defmodule Plausible.Repo.Migrations.RemoveTweets do
use Ecto.Migration
def change do
drop table(:tweets)
end
end