projects
/
bucardo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
92a6868
)
Change customcode.status default to "active".
author
David E. Wheeler
<david@justatheory.com>
Mon, 5 Nov 2012 17:59:32 +0000
(09:59 -0800)
committer
David E. Wheeler
<david@justatheory.com>
Mon, 5 Nov 2012 17:59:32 +0000
(09:59 -0800)
It is a text column, not a boolean, and Bucardo.pm looks for "active".
bucardo.schema
patch
|
blob
|
blame
|
history
diff --git
a/bucardo.schema
b/bucardo.schema
index 8ed07b54f21f9f3d12c7773e6918bacf4915bb9c..a3dfa3e88b114742aedae9d5614176a0bcba01ef 100644
(file)
--- a/
bucardo.schema
+++ b/
bucardo.schema
@@
-429,7
+429,7
@@
CREATE TABLE bucardo.customcode (
whenrun TEXT NOT NULL,
getdbh BOOLEAN NOT NULL DEFAULT 'true',
src_code TEXT NOT NULL,
- status TEXT NOT NULL DEFAULT '
tru
e',
+ status TEXT NOT NULL DEFAULT '
activ
e',
priority SMALLINT NOT NULL DEFAULT 0,
cdate TIMESTAMPTZ NOT NULL DEFAULT now()
);