team_date_point
This data as json
0 records
CREATE TABLE "team_date_point" (
"id" INTEGER,
"team_id" INTEGER,
"date" INTEGER,
"wins" INTEGER,
"loses" INTEGER,
"otl" INTEGER,
"sol" INTEGER,
"total_points" INTEGER,
UNIQUE("team_id","date"),
PRIMARY KEY("id" AUTOINCREMENT)
);