diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-05-03 21:50:34 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-05-03 21:50:34 -0400 |
commit | e4a2aacd1d2f852264319aff848257349575131e (patch) | |
tree | a0d25ece0130fce219cc4df6950f7ab5d41b5c7b /install/schema_postgres.sql | |
parent | 5686ee13b4540bfc0ce6c40f07b6e43c3c55e9a8 (diff) | |
parent | 45c7a03a0d3e534ee121a632fc279c353015b876 (diff) | |
download | volse-hubzilla-e4a2aacd1d2f852264319aff848257349575131e.tar.gz volse-hubzilla-e4a2aacd1d2f852264319aff848257349575131e.tar.bz2 volse-hubzilla-e4a2aacd1d2f852264319aff848257349575131e.zip |
Merge remote-tracking branch 'upstream/dev' into plugin-repo
Diffstat (limited to 'install/schema_postgres.sql')
-rw-r--r-- | install/schema_postgres.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index 2c0847cbf..75e53d3dd 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -120,6 +120,8 @@ CREATE TABLE "app" ( "app_price" text NOT NULL DEFAULT '', "app_page" text NOT NULL DEFAULT '', "app_requires" text NOT NULL DEFAULT '', + "app_deleted" smallint NOT NULL DEFAULT '0', + "app_system" smallint NOT NULL DEFAULT '0', "app_created" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "app_edited" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', PRIMARY KEY ("id") @@ -133,6 +135,8 @@ create index "app_channel" on app ("app_channel"); create index "app_price" on app ("app_price"); create index "app_created" on app ("app_created"); create index "app_edited" on app ("app_edited"); +create index "app_deleted" on app ("app_deleted"); +create index "app_system" on app ("app_system"); CREATE TABLE "attach" ( "id" serial NOT NULL, "aid" bigint NOT NULL DEFAULT '0', |