Skip to content

Commit

Permalink
fix an output in examples/postgres/Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoto7250 committed Jun 24, 2024
1 parent d1b8491 commit 1a2293b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions examples/postgres/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ cargo run
Example output:
```
DROP TABLE IF EXISTS "document"; CREATE TABLE IF NOT EXISTS "document" ( "id" serial NOT NULL PRIMARY KEY, "uuid" uuid, "json_field" jsonb, "timestamp" timestamp, "timestamp_with_time_zone" timestamp with time zone, "decimal" decimal, "array" integer[] ); CREATE INDEX "partial_index_small_decimal" ON "document" ("decimal") WHERE NOT "decimal" < 11
Create table document: Ok(())
Insert into document: Ok(1)
Expand Down

0 comments on commit 1a2293b

Please sign in to comment.