diff options
author | Habeas Codice <habeascodice@federated.social> | 2016-06-27 06:28:08 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-06-27 16:06:09 -0700 |
commit | f40f7b4d6e291a05ea0a20145bdbe7d98b3d837c (patch) | |
tree | 84568771d8613cbaf6fb4c2c1e6b778cf6fa723b | |
parent | fe7020e2f8a3ba70f808ce4fcb20759101aafd44 (diff) | |
download | volse-hubzilla-f40f7b4d6e291a05ea0a20145bdbe7d98b3d837c.tar.gz volse-hubzilla-f40f7b4d6e291a05ea0a20145bdbe7d98b3d837c.tar.bz2 volse-hubzilla-f40f7b4d6e291a05ea0a20145bdbe7d98b3d837c.zip |
typos
-rw-r--r-- | install/schema_postgres.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index 64cf37f7e..378308233 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -827,15 +827,15 @@ CREATE TABLE "obj" ( "obj_id" serial NOT NULL, "obj_page" char(64) NOT NULL DEFAULT '', "obj_verb" text NOT NULL DEFAULT '', - "obj_type" bigint NOT NULL DEFAULT '0', + "obj_type" bigint NOT NULL DEFAULT 0, "obj_obj" text NOT NULL DEFAULT '', - "obj_channel" bigint NOT NULL DEFAULT '0', + "obj_channel" bigint NOT NULL DEFAULT 0, "obj_term" char(255) NOT NULL DEFAULT '', "obj_url" char(255) NOT NULL DEFAULT '', "obj_imgurl" char(255) NOT NULL DEFAULT '', "obj_created" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', "obj_edited" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', - "obj_quantity" int(11) NOT NULL DEFAUL '0'. + "obj_quantity" bigint NOT NULL DEFAULT 0, "allow_cid" text NOT NULL, "allow_gid" text NOT NULL, "deny_cid" text NOT NULL, |