SQL to apply this change to an existing table:
alter table actor.stat_cat
add column usr_summary boolean not null default false;
git-svn-id: svn://svn.open-ils.org/ILS/trunk@13532
dcc99617-32d9-48b4-a31d-
7c20da2025e4
<field reporter:label="Name" name="name" reporter:datatype="text" oils_persist:i18n="true"/>
<field reporter:label="OPAC Visible" name="opac_visible" reporter:datatype="bool"/>
<field reporter:label="Owning Library" name="owner" reporter:datatype="org_unit"/>
+ <field reporter:label="User Summary" name="usr_summary" reporter:datatype="bool"/>
</fields>
<links>
<link field="owner" reltype="has_a" key="id" map="" class="aou"/>
owner INT NOT NULL,
name TEXT NOT NULL,
opac_visible BOOL NOT NULL DEFAULT FALSE,
+ usr_summary BOOL NOT NULL DEFAULT FALSE,
CONSTRAINT sc_once_per_owner UNIQUE (owner,name)
);
COMMENT ON TABLE actor.stat_cat IS $$