-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrations for sharing permissions data models (#461)
* Migrations for sharing permissions data models * Add missing commas to migrations
- Loading branch information
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CREATE TABLE entity_database_permission ( | ||
entity_id INT NOT NULL, | ||
database_id INT NOT NULL, | ||
sharing_level SMALLINT NOT NULL, | ||
|
||
FOREIGN KEY(entity_id) REFERENCES entity(id), | ||
FOREIGN KEY(database_id) REFERENCES database(id), | ||
UNIQUE(entity_id, database_id) | ||
); | ||
|
||
ALTER TABLE database ADD public_sharing_level SMALLINT NOT NULL DEFAULT 0; -- defaults to no public access |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CREATE TABLE entity_database_permission ( | ||
entity_id INT NOT NULL, | ||
database_id INT NOT NULL, | ||
sharing_level SMALLINT NOT NULL, | ||
|
||
FOREIGN KEY(entity_id) REFERENCES entity(id), | ||
FOREIGN KEY(database_id) REFERENCES database(id), | ||
UNIQUE(entity_id, database_id) | ||
); | ||
|
||
ALTER TABLE database ADD public_sharing_level SMALLINT NOT NULL DEFAULT 0; -- defaults to no public access |