Bug 26170: DBIC schema

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Tomás Cohen Arazi 2023-11-01 15:26:31 -03:00
parent 6fec4ea0df
commit 4317eca9b3
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F
2 changed files with 24 additions and 4 deletions

View file

@ -647,6 +647,14 @@ flag for allowing auto-renewal
useful for reporting purposes
=head2 protected
data_type: 'tinyint'
default_value: 0
is_nullable: 0
boolean flag to mark selected patrons as protected from deletion
=cut
__PACKAGE__->add_columns(
@ -850,6 +858,8 @@ __PACKAGE__->add_columns(
{ data_type => "tinyint", default_value => 1, is_nullable => 0 },
"primary_contact_method",
{ data_type => "varchar", is_nullable => 1, size => 45 },
"protected",
{ data_type => "tinyint", default_value => 0, is_nullable => 0 },
);
=head1 PRIMARY KEY
@ -2133,8 +2143,8 @@ Composing rels: L</user_permissions> -> permission
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission");
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-10-10 14:16:46
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:nIMnqyBVBam7NvIx4aDfHw
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-11-01 18:21:38
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5wLpO0InLt7EnwlICnhqHg
__PACKAGE__->has_many(
"restrictions",

View file

@ -644,6 +644,14 @@ flag for allowing auto-renewal
useful for reporting purposes
=head2 protected
data_type: 'tinyint'
default_value: 0
is_nullable: 0
boolean flag to mark selected patrons as protected from deletion
=cut
__PACKAGE__->add_columns(
@ -835,11 +843,13 @@ __PACKAGE__->add_columns(
{ data_type => "tinyint", default_value => 1, is_nullable => 0 },
"primary_contact_method",
{ data_type => "varchar", is_nullable => 1, size => 45 },
"protected",
{ data_type => "tinyint", default_value => 0, is_nullable => 0 },
);
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-06 15:46:58
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:dqGu9iDgO+u09l9X1G0NuA
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-11-01 18:21:38
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WdNGUFdglTb3Heu+VjLWFw
__PACKAGE__->add_columns(
'+anonymized' => { is_boolean => 1 },