7 lines
150 B
Elixir
7 lines
150 B
Elixir
defmodule Towerops.Repo.Migrations.DropUserCredentials do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
drop_if_exists table(:user_credentials)
|
|
end
|
|
end
|