Skip to content

Commit

Permalink
Update UPGRADE.md
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-schranz committed Oct 8, 2022
1 parent 4fea3bc commit 56204d3
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions UPGRADE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@

## 0.6.x

### Add jsonb support for postgresql tables
### Use jsonb for PostgreSQL json columns

```postgresql
ALTER TABLE test_example_dimensions
ALTER COLUMN templateData
SET DATA TYPE jsonb
USING templateData::jsonb;
```
This effects only PostgreSQL databases:

```sql
ALTER TABLE <your_entity>_example_dimensions ALTER COLUMN templateData SET DATA TYPE jsonb USING templateData::jsonb;

## 0.6.3

Expand Down

0 comments on commit 56204d3

Please sign in to comment.