gitignore and drop existing users table

This commit is contained in:
Graham McIntire 2025-07-04 16:22:51 -05:00
parent 5bdb40b9f8
commit 5e48a7be8a
No known key found for this signature in database
2 changed files with 9 additions and 1 deletions

2
.gitignore vendored
View file

@ -41,4 +41,4 @@ k8s/secrets.yaml
/.horusec
/vendor
/temp

View file

@ -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