projects
/
bucardo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f1f8b0f
)
Make sure all sequences are in the bucardo schema.
author
Greg Sabino Mullane
<greg@endpoint.com>
Wed, 12 Aug 2015 18:54:08 +0000
(14:54 -0400)
committer
Greg Sabino Mullane
<greg@endpoint.com>
Wed, 12 Aug 2015 18:54:08 +0000
(14:54 -0400)
This was preventing bucardo upgrade from working!
bucardo.schema
patch
|
blob
|
blame
|
history
diff --git
a/bucardo.schema
b/bucardo.schema
index 45769fcacabf3eac1be05488022278b0dba0e72a..5b12bc95708c42b7c71f976444ef4b4d60466e37 100644
(file)
--- a/
bucardo.schema
+++ b/
bucardo.schema
@@
-439,7
+439,7
@@
ALTER TABLE bucardo.sync ADD CONSTRAINT sync_name_sane
ALTER TABLE bucardo.sync ADD CONSTRAINT sync_isolation_level
CHECK (isolation_level IS NULL OR (lower(isolation_level) IN ('serializable', 'repeatable read')));
-CREATE SEQUENCE clone_id_seq;
+CREATE SEQUENCE
bucardo.
clone_id_seq;
CREATE TABLE bucardo.clone (
id INTEGER NOT NULL DEFAULT nextval('clone_id_seq'),
CONSTRAINT clone_id_pk PRIMARY KEY (id),