basic admin endgame view and add (#3)

Reviewed-on: #3
This commit was merged in pull request #3.
This commit is contained in:
2026-06-22 18:44:52 +00:00
parent e955e40930
commit b47fcdffcb
82 changed files with 2031 additions and 2 deletions
@@ -0,0 +1,23 @@
defmodule Chesstrainer.Repo.Migrations.CreateEndgames do
use Ecto.Migration
def change do
create table(:endgames, primary_key: false) do
add :id, :binary_id, primary_key: true
add :fen, :string
add :color, :string
add :key, :string
add :message, :text
add :notes, :text
add :result, :string
add :rating, :integer, default: 1500
add :rating_deviation, :integer, default: 350
add :times_attempted, :integer, default: 0
add :times_solved, :integer, default: 0
timestamps(type: :utc_datetime)
end
create unique_index(:endgames, [:fen])
end
end