gitignore and drop existing users table
This commit is contained in:
parent
5bdb40b9f8
commit
5e48a7be8a
2 changed files with 9 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -41,4 +41,4 @@ k8s/secrets.yaml
|
|||
/.horusec
|
||||
|
||||
/vendor
|
||||
|
||||
/temp
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
defmodule Aprsme.Repo.Migrations.DropUsersAndUsersTokensTables do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
drop table(:users_tokens)
|
||||
drop table(:users)
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Reference in a new issue