You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							23 lines
						
					
					
						
							1023 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							23 lines
						
					
					
						
							1023 B
						
					
					
				
								CREATE TABLE groups (
							 | 
						|
								  uuid                              TEXT NOT NULL PRIMARY KEY,
							 | 
						|
								  organizations_uuid                TEXT NOT NULL REFERENCES organizations (uuid),
							 | 
						|
								  name                              TEXT NOT NULL,
							 | 
						|
								  access_all                        BOOLEAN NOT NULL,
							 | 
						|
								  external_id                       TEXT NULL,
							 | 
						|
								  creation_date                     TIMESTAMP NOT NULL,
							 | 
						|
								  revision_date                     TIMESTAMP NOT NULL
							 | 
						|
								);
							 | 
						|
								
							 | 
						|
								CREATE TABLE groups_users (
							 | 
						|
								  groups_uuid                       TEXT NOT NULL REFERENCES groups (uuid),
							 | 
						|
								  users_organizations_uuid          TEXT NOT NULL REFERENCES users_organizations (uuid),
							 | 
						|
								  UNIQUE (groups_uuid, users_organizations_uuid)
							 | 
						|
								);
							 | 
						|
								
							 | 
						|
								CREATE TABLE collections_groups (
							 | 
						|
								  collections_uuid                  TEXT NOT NULL REFERENCES collections (uuid),
							 | 
						|
								  groups_uuid                       TEXT NOT NULL REFERENCES groups (uuid),
							 | 
						|
								  read_only                         BOOLEAN NOT NULL,
							 | 
						|
								  hide_passwords                    BOOLEAN NOT NULL,
							 | 
						|
								  UNIQUE (collections_uuid, groups_uuid)
							 | 
						|
								);
							 |