summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20221219082326_create_player.exs
blob: 804434443896023fc8d25099819cdae2b5a41f19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
defmodule Chessh.Repo.Migrations.CreatePlayer do
  use Ecto.Migration

  def change do
    execute("CREATE EXTENSION IF NOT EXISTS citext", "")

    create table(:players) do
      add(:github_id, :integer, null: false)
      add(:username, :citext, null: false)
      add(:hashed_password, :string, null: true)
      timestamps()
    end

    create(unique_index(:players, [:username]))
    create(unique_index(:players, [:github_id]))
  end
end