Skip to content

Commit

Permalink
fix: removed single quote from CREATE TABLE statement
Browse files Browse the repository at this point in the history
  • Loading branch information
10ko committed Jul 1, 2019
1 parent 7bee9cf commit a4b33c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/vote/services/postgres/garden.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ tasks:
--host=db,
--port=5432,
-d, postgres,
-c, "'CREATE TABLE IF NOT EXISTS votes (id VARCHAR(255) NOT NULL UNIQUE, vote VARCHAR(255) NOT NULL, created_at timestamp default NULL)'"
-c, "CREATE TABLE IF NOT EXISTS votes (id VARCHAR(255) NOT NULL UNIQUE, vote VARCHAR(255) NOT NULL, created_at timestamp default NULL)"
]
dependencies:
- db
Expand Down

0 comments on commit a4b33c5

Please sign in to comment.