chart_slug_redirects
Data license: CC-BY
0 rows where chart_id = 214 sorted by id descending
This data as json
0 records
CREATE TABLE "chart_slug_redirects" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT, "slug" VARCHAR(255) NOT NULL , "chart_id" INTEGER NOT NULL , "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP , "updatedAt" DATETIME NULL, FOREIGN KEY("chart_id") REFERENCES "charts" ("id") ON UPDATE RESTRICT ON DELETE RESTRICT ); CREATE INDEX "chart_slug_redirects_chart_id" ON "chart_slug_redirects" ("chart_id"); CREATE UNIQUE INDEX "slug" ON "chart_slug_redirects" ("slug");