Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Small fix to avoid error if the timescaledb extension is already installed

Signed-off-by: Ramon Guiu <[email protected]>
  • Loading branch information
ramonguiu authored Dec 19, 2024
1 parent 57be974 commit 445a4f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ You create a regular table and then convert it into a hypertable. A hypertable a

```sql
-- Create timescaledb extension
CREATE EXTENSION timescaledb;
CREATE EXTENSION IF NOT EXISTS timescaledb;
-- Create a regular SQL table
CREATE TABLE conditions (
Expand Down

0 comments on commit 445a4f7

Please sign in to comment.