From 23caf878dcefb6e97f7d373e443535a2e3236fd1 Mon Sep 17 00:00:00 2001 From: gdebus Date: Wed, 14 Jun 2023 18:28:50 +0200 Subject: [PATCH] fixed example query --- README.md | 15 ++++++++------- docs/index.md | 14 +++++++------- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 04a9f99..2902b82 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,7 @@ Run a query: ```sql select name, + description, email, enabled from @@ -62,13 +63,13 @@ from ``` ``` -+-------------------+-----------------------------+---------+ -| name | email | enabled | -+-------------------+-----------------------------+---------+ -| demo | demo@example.com | true | -| admin | admin@testproject.com | true | -| reader | reader@testproject.com | true | -+-------------------+-----------------------------+---------+ ++-------------------+---------------------------+-----------------------------+---------+ +| name | description | email | enabled | ++-------------------+---------------------------+-----------------------------+---------+ +| demo | This is the demo user | demo@example.com | true | +| admin | This is the admin user | admin@testproject.com | true | +| reader | This is the readonly user | reader@testproject.com | true | ++-------------------+---------------------------+-----------------------------+---------+ ``` ## Developing diff --git a/docs/index.md b/docs/index.md index e993e32..272bd4e 100644 --- a/docs/index.md +++ b/docs/index.md @@ -29,13 +29,13 @@ from ``` ``` -+-------------------+-----------------------------+---------+ -| name | email | enabled | -+-------------------+-----------------------------+---------+ -| demo | demo@example.com | true | -| admin | admin@testproject.com | true | -| reader | reader@testproject.com | true | -+-------------------+-----------------------------+---------+ ++-------------------+---------------------------+-----------------------------+---------+ +| name | description | email | enabled | ++-------------------+---------------------------+-----------------------------+---------+ +| demo | This is the demo user | demo@example.com | true | +| admin | This is the admin user | admin@testproject.com | true | +| reader | This is the readonly user | reader@testproject.com | true | ++-------------------+---------------------------+-----------------------------+---------+ ``` ## Documentation