Bug 9988: DBIx schema changes for need_merge_authorities
As generated by misc/devel/update_dbix_class_files.pl. No test plan. Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Marc Véron <veron@veron.ch> Signed-off-by: Jacek Ablewicz <abl@biblos.pk.edu.pl> Signed-off-by: Julian Maurice <julian.maurice@biblibre.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
This commit is contained in:
parent
7effc34cd2
commit
a26ec1b47f
1 changed files with 30 additions and 2 deletions
|
@ -34,12 +34,29 @@ __PACKAGE__->table("need_merge_authorities");
|
|||
data_type: 'bigint'
|
||||
is_nullable: 0
|
||||
|
||||
=head2 authid_new
|
||||
|
||||
data_type: 'bigint'
|
||||
is_nullable: 1
|
||||
|
||||
=head2 reportxml
|
||||
|
||||
data_type: 'text'
|
||||
is_nullable: 1
|
||||
|
||||
=head2 done
|
||||
|
||||
data_type: 'tinyint'
|
||||
default_value: 0
|
||||
is_nullable: 1
|
||||
|
||||
=head2 timestamp
|
||||
|
||||
data_type: 'timestamp'
|
||||
datetime_undef_if_invalid: 1
|
||||
default_value: current_timestamp
|
||||
is_nullable: 0
|
||||
|
||||
=cut
|
||||
|
||||
__PACKAGE__->add_columns(
|
||||
|
@ -47,8 +64,19 @@ __PACKAGE__->add_columns(
|
|||
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
|
||||
"authid",
|
||||
{ data_type => "bigint", is_nullable => 0 },
|
||||
"authid_new",
|
||||
{ data_type => "bigint", is_nullable => 1 },
|
||||
"reportxml",
|
||||
{ data_type => "text", is_nullable => 1 },
|
||||
"done",
|
||||
{ data_type => "tinyint", default_value => 0, is_nullable => 1 },
|
||||
"timestamp",
|
||||
{
|
||||
data_type => "timestamp",
|
||||
datetime_undef_if_invalid => 1,
|
||||
default_value => \"current_timestamp",
|
||||
is_nullable => 0,
|
||||
},
|
||||
);
|
||||
|
||||
=head1 PRIMARY KEY
|
||||
|
@ -64,8 +92,8 @@ __PACKAGE__->add_columns(
|
|||
__PACKAGE__->set_primary_key("id");
|
||||
|
||||
|
||||
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
|
||||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BL9ArSyPrmUG0QrrWgoPSw
|
||||
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-02-18 16:34:45
|
||||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QCbtlKCgozivph6ozRzznQ
|
||||
|
||||
|
||||
# You can replace this text with custom content, and it will be preserved on regeneration
|
||||
|
|
Loading…
Reference in a new issue