Bug 20157: DBIC Schema changes
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
f353a6caac
commit
1240cd1408
1 changed files with 18 additions and 2 deletions
|
@ -59,6 +59,18 @@ __PACKAGE__->table("library_groups");
|
|||
default_value: 0
|
||||
is_nullable: 0
|
||||
|
||||
=head2 ft_search_groups_opac
|
||||
|
||||
data_type: 'tinyint'
|
||||
default_value: 0
|
||||
is_nullable: 0
|
||||
|
||||
=head2 ft_search_groups_staff
|
||||
|
||||
data_type: 'tinyint'
|
||||
default_value: 0
|
||||
is_nullable: 0
|
||||
|
||||
=head2 created_on
|
||||
|
||||
data_type: 'timestamp'
|
||||
|
@ -87,6 +99,10 @@ __PACKAGE__->add_columns(
|
|||
{ data_type => "text", is_nullable => 1 },
|
||||
"ft_hide_patron_info",
|
||||
{ data_type => "tinyint", default_value => 0, is_nullable => 0 },
|
||||
"ft_search_groups_opac",
|
||||
{ data_type => "tinyint", default_value => 0, is_nullable => 0 },
|
||||
"ft_search_groups_staff",
|
||||
{ data_type => "tinyint", default_value => 0, is_nullable => 0 },
|
||||
"created_on",
|
||||
{
|
||||
data_type => "timestamp",
|
||||
|
@ -186,8 +202,8 @@ __PACKAGE__->belongs_to(
|
|||
);
|
||||
|
||||
|
||||
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-09 16:32:32
|
||||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4nPUJUWLIqttCGWm7N0txg
|
||||
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-09 16:35:09
|
||||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Hy7zXPiHGs832yvEBIO6Uw
|
||||
|
||||
|
||||
# You can replace this text with custom code or comments, and it will be preserved on regeneration
|
||||
|
|
Loading…
Reference in a new issue