Skip to content

Commit

Permalink
update SQL structure in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulMarisOUMary committed May 30, 2022
1 parent b12203c commit d147689
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,10 @@ COLLATE utf8mb4_unicode_ci;
```sql
CREATE TABLE IF NOT EXISTS `table_me`
(
`guild_id` BIGINT unsigned NOT NULL,
`user_id` BIGINT unsigned NOT NULL,
`user_me` varchar(1024),
UNIQUE(`user_id`)
CONSTRAINT `me_per_guild` UNIQUE (`guild_id`, `user_id`)
)
ENGINE = InnoDB,
CHARACTER SET utf8mb4,
Expand Down

0 comments on commit d147689

Please sign in to comment.