Skip to content

Commit 441e927

Browse files
authored
Docs: update tidb.md (#19027)
1 parent 3ff3e9a commit 441e927

File tree

1 file changed

+2
-2
lines changed
  • docs/integrations/destinations

1 file changed

+2
-2
lines changed

docs/integrations/destinations/tidb.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Make sure your TiDB database can be accessed by Airbyte. If your database is wit
3636

3737
#### **Permissions**
3838

39-
You need a user with `CREATE, INSERT, SELECT, DROP` permissions. We highly recommend creating an Airbyte-specific user for this purpose.
39+
You need a user with `CREATE, INSERT, SELECT, DROP, CREATE VIEW, ALTER` permissions. We highly recommend creating an Airbyte-specific user for this purpose.
4040

4141
To create a dedicated database user, run the following commands against your database:
4242

@@ -47,7 +47,7 @@ CREATE USER 'airbyte'@'%' IDENTIFIED BY 'your_password_here';
4747
Then give it access to the relevant database:
4848

4949
```sql
50-
GRANT CREATE, INSERT, SELECT, DROP ON <database name>.* TO 'airbyte'@'%';
50+
GRANT CREATE, INSERT, SELECT, DROP, CREATE VIEW, ALTER ON <database name>.* TO 'airbyte'@'%';
5151
```
5252

5353
#### Target Database

0 commit comments

Comments
 (0)