diff options
author | friendica <info@friendica.com> | 2015-01-26 19:13:06 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-26 19:13:06 -0800 |
commit | 0596097f8603d24823ea57a68eaf405c6c0d94ff (patch) | |
tree | e2df28813c69fe500570a293fb554cf7b67c52aa /install/schema_postgres.sql | |
parent | 9f5bfca28dde23893156ad36682e20ca2fc0dd45 (diff) | |
download | volse-hubzilla-0596097f8603d24823ea57a68eaf405c6c0d94ff.tar.gz volse-hubzilla-0596097f8603d24823ea57a68eaf405c6c0d94ff.tar.bz2 volse-hubzilla-0596097f8603d24823ea57a68eaf405c6c0d94ff.zip |
provide storage for directory based reputation in the xlink table by setting xlink_static = 1, so that xlink_static = 0 is traditional poco linkages
Diffstat (limited to 'install/schema_postgres.sql')
-rw-r--r-- | install/schema_postgres.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index 8539e672d..2fcc7f9ba 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -1145,12 +1145,14 @@ CREATE TABLE "xlink" ( "xlink_rating" bigint NOT NULL DEFAULT '0', "xlink_rating_text" TEXT NOT NULL DEFAULT '', "xlink_updated" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', + "xlink_static" numeric(1) NOT NULL DEFAULT '0', PRIMARY KEY ("xlink_id") ); create index "xlink_xchan" on xlink ("xlink_xchan"); create index "xlink_link" on xlink ("xlink_link"); create index "xlink_updated" on xlink ("xlink_updated"); create index "xlink_rating" on xlink ("xlink_rating"); +create index "xlink_static" on xlink ("xlink_static"); CREATE TABLE "xperm" ( "xp_id" serial NOT NULL, "xp_client" varchar( 20 ) NOT NULL DEFAULT '', |