MM-63935 - docs abac end user indicators db schema updates (#8893)

* MM-63935 - docs abac end user indicators db schema updates

* revert auto not null from quick db
This commit is contained in:
Pablo Vélez 2025-06-12 14:29:13 +02:00 committed by GitHub
parent 972bd34da6
commit 6f1d06ec4c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 4 additions and 5 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 580 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 582 KiB

File diff suppressed because one or more lines are too long

View file

@ -1,5 +1,5 @@
-- Exported from QuickDBD: https://www.quickdatabasediagrams.com/
-- Link to schema: https://app.quickdatabasediagrams.com/#/d/y8OBmj
-- Link to schema: https://app.quickdatabasediagrams.com/#/d/7cAwTM
-- NOTE! If you have used non-SQL datatypes in your design, you will have to change these here.
-- Server Database - Schema Version 2
@ -55,6 +55,7 @@ CREATE TABLE [Channel] (
[type] string NOT NULL ,
[update_at] number NOT NULL ,
[banner_info] string,
[abac_policy_enforced] boolean NOT NULL ,
CONSTRAINT [PK_Channel] PRIMARY KEY CLUSTERED (
[id] ASC
)
@ -661,9 +662,6 @@ ON [Post] ([channel_id])
CREATE INDEX [idx_Post_pending_post_id]
ON [Post] ([pending_post_id])
CREATE INDEX [idx_Post_type]
ON [Post] ([type])
CREATE INDEX [idx_Post_user_id]
ON [Post] ([user_id])

View file

@ -40,6 +40,7 @@ team_id string INDEX FK >- Team.id
type string
update_at number
banner_info string
abac_policy_enforced boolean
ChannelInfo