add invites
This commit is contained in:
@ -9,6 +9,7 @@ defmodule Lokal.Repo.Migrations.CreateUsersAuthTables do
|
||||
add :email, :citext, null: false
|
||||
add :hashed_password, :string, null: false
|
||||
add :confirmed_at, :naive_datetime
|
||||
add :role, :string
|
||||
timestamps()
|
||||
end
|
||||
|
||||
|
19
priv/repo/migrations/20210904211727_create_invites.exs
Normal file
19
priv/repo/migrations/20210904211727_create_invites.exs
Normal file
@ -0,0 +1,19 @@
|
||||
defmodule Lokal.Repo.Migrations.CreateInvites do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
create table(:invites, primary_key: false) do
|
||||
add :id, :binary_id, primary_key: true
|
||||
add :name, :string
|
||||
add :token, :string
|
||||
add :uses_left, :integer, default: nil
|
||||
add :disabled_at, :naive_datetime, default: nil
|
||||
|
||||
add :user_id, references(:users, on_delete: :delete_all, type: :binary_id)
|
||||
|
||||
timestamps()
|
||||
end
|
||||
|
||||
create index(:invites, [:user_id])
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user