there is no privacy to attribute to any circle,
they all are private, that's all.
This commit is contained in:
parent
b7fa996dbc
commit
edf89cf739
6 changed files with 13 additions and 11 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2015-09-10 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* instdbws.sql:
|
||||
|
||||
2015-09-10 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* yavsc.js:
|
||||
|
|
|
|||
|
|
@ -658,7 +658,6 @@ CREATE TABLE circle
|
|||
owner character varying(255) NOT NULL, -- creator of this circle
|
||||
applicationname character varying(255) NOT NULL, -- Application name
|
||||
title character varying(512) NOT NULL,
|
||||
public boolean DEFAULT false, -- true when this circle is a public circle, from which the title would be available from an anonymous access to the owner's profile
|
||||
CONSTRAINT circle_pkey PRIMARY KEY (_id),
|
||||
CONSTRAINT circle_owner_fkey FOREIGN KEY (owner, applicationname)
|
||||
REFERENCES users (username, applicationname) MATCH SIMPLE
|
||||
|
|
@ -673,7 +672,6 @@ ALTER TABLE circle
|
|||
COMMENT ON COLUMN circle._id IS 'Circle identifier';
|
||||
COMMENT ON COLUMN circle.owner IS 'creator of this circle';
|
||||
COMMENT ON COLUMN circle.applicationname IS 'Application name';
|
||||
COMMENT ON COLUMN circle.public IS 'true when this circle is a public circle, from which the title would be available from an anonymous access to the owner''s profile';
|
||||
|
||||
|
||||
-- Table: circle_members
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue