Skip to content

Instantly share code, notes, and snippets.

@weilinfox
Created July 28, 2022 17:07
Show Gist options
  • Save weilinfox/48f6ea365a8692b8da7fab890b7208f0 to your computer and use it in GitHub Desktop.
Save weilinfox/48f6ea365a8692b8da7fab890b7208f0 to your computer and use it in GitHub Desktop.
Theme Cuckoo Links plugin Pgsql.sql
CREATE TABLE IF NOT EXISTS "typecho_links" (
"lid" SERIAL PRIMARY KEY,
"name" varchar(200) default NULL,
"url" varchar(200) default NULL,
"sort" varchar(200) default NULL,
"image" varchar(200) default NULL,
"description" varchar(200) default NULL,
"user" varchar(200) default NULL,
"order" bigint default '0'
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment