Skip to content

Commit

Permalink
fix per PeterB for JSON string.
Browse files Browse the repository at this point in the history
  • Loading branch information
jberkus authored and adngdb committed May 30, 2012
1 parent 0e2f226 commit 09611f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/upgrade/11.0/crontabber_state.sql
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ SELECT create_table_if_not_exists ( 'crontabber_state',
last_updated timestamptz not null primary key
);

INSERT INTO crontabber_state VALUES ( '{ "initialized" }', now() );
INSERT INTO crontabber_state VALUES ( '{}', now() );

CREATE TRIGGER crontabber_timestamp BEFORE UPDATE ON crontabber_state
FOR EACH ROW EXECUTE PROCEDURE crontabber_timestamp();
Expand Down

0 comments on commit 09611f1

Please sign in to comment.