mirror of
https://github.com/plausible/analytics.git
synced 2024-11-23 20:13:31 +03:00
8 lines
124 B
Elixir
8 lines
124 B
Elixir
defmodule Plausible.Repo.Migrations.RemoveTweets do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
drop table(:tweets)
|
|
end
|
|
end
|