diff options
author | RedMatrix <info@friendica.com> | 2015-01-24 12:23:27 +1100 |
---|---|---|
committer | RedMatrix <info@friendica.com> | 2015-01-24 12:23:27 +1100 |
commit | be9fc16bd5833e58ba2c3e5ed19153548437fe45 (patch) | |
tree | 059a26a98745583dcd7e5370019de7dc4be477c3 /install/schema_postgres.sql | |
parent | 43793540214ac6a578f8495c3cca41d831eb7536 (diff) | |
parent | eb4e6ab073990e775ce7d717a1cdfdaec4327e07 (diff) | |
download | volse-hubzilla-be9fc16bd5833e58ba2c3e5ed19153548437fe45.tar.gz volse-hubzilla-be9fc16bd5833e58ba2c3e5ed19153548437fe45.tar.bz2 volse-hubzilla-be9fc16bd5833e58ba2c3e5ed19153548437fe45.zip |
Merge pull request #875 from zzottel/master
add db update 1131/1132 to database schemas
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 a1b5a76fb..8539e672d 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -7,6 +7,7 @@ CREATE TABLE "abook" ( "abook_their_perms" bigint NOT NULL DEFAULT '0', "abook_closeness" numeric(3) NOT NULL DEFAULT '99', "abook_rating" bigint NOT NULL DEFAULT '0', + "abook_rating_text" TEXT NOT NULL DEFAULT '', "abook_created" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "abook_updated" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "abook_connected" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', @@ -1142,6 +1143,7 @@ CREATE TABLE "xlink" ( "xlink_xchan" text NOT NULL DEFAULT '', "xlink_link" text NOT NULL DEFAULT '', "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', PRIMARY KEY ("xlink_id") ); |