Bugzilla – Attachment 93452 Details for
Bug 13881
Add ability to defined circulation desks
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 13881: Schema file DO NOT PUSH!
Bug-13881-Schema-file-DO-NOT-PUSH.patch (text/plain), 2.16 KB, created by
Nicolas Legrand
on 2019-10-02 12:53:12 UTC
(
hide
)
Description:
Bug 13881: Schema file DO NOT PUSH!
Filename:
MIME Type:
Creator:
Nicolas Legrand
Created:
2019-10-02 12:53:12 UTC
Size:
2.16 KB
patch
obsolete
>From f31f42b517aab82ba03831c5c7c0c9da8c131766 Mon Sep 17 00:00:00 2001 >From: Nicolas Legrand <nicolas.legrand@bulac.fr> >Date: Wed, 2 Oct 2019 14:28:43 +0200 >Subject: [PATCH] Bug 13881: Schema file DO NOT PUSH! > >--- > Koha/Schema/Result/Desk.pm | 92 ++++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 92 insertions(+) > create mode 100644 Koha/Schema/Result/Desk.pm > >diff --git a/Koha/Schema/Result/Desk.pm b/Koha/Schema/Result/Desk.pm >new file mode 100644 >index 0000000..a72be1b >--- /dev/null >+++ b/Koha/Schema/Result/Desk.pm >@@ -0,0 +1,92 @@ >+use utf8; >+package Koha::Schema::Result::Desk; >+ >+# Created by DBIx::Class::Schema::Loader >+# DO NOT MODIFY THE FIRST PART OF THIS FILE >+ >+=head1 NAME >+ >+Koha::Schema::Result::Desk >+ >+=cut >+ >+use strict; >+use warnings; >+ >+use base 'DBIx::Class::Core'; >+ >+=head1 TABLE: C<desks> >+ >+=cut >+ >+__PACKAGE__->table("desks"); >+ >+=head1 ACCESSORS >+ >+=head2 desk_id >+ >+ data_type: 'integer' >+ is_auto_increment: 1 >+ is_nullable: 0 >+ >+=head2 desk_name >+ >+ data_type: 'varchar' >+ default_value: (empty string) >+ is_nullable: 0 >+ size: 100 >+ >+=head2 branchcode >+ >+ data_type: 'varchar' >+ is_foreign_key: 1 >+ is_nullable: 0 >+ size: 10 >+ >+=cut >+ >+__PACKAGE__->add_columns( >+ "desk_id", >+ { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, >+ "desk_name", >+ { data_type => "varchar", default_value => "", is_nullable => 0, size => 100 }, >+ "branchcode", >+ { data_type => "varchar", is_foreign_key => 1, is_nullable => 0, size => 10 }, >+); >+ >+=head1 PRIMARY KEY >+ >+=over 4 >+ >+=item * L</desk_id> >+ >+=back >+ >+=cut >+ >+__PACKAGE__->set_primary_key("desk_id"); >+ >+=head1 RELATIONS >+ >+=head2 branchcode >+ >+Type: belongs_to >+ >+Related object: L<Koha::Schema::Result::Branch> >+ >+=cut >+ >+__PACKAGE__->belongs_to( >+ "branchcode", >+ "Koha::Schema::Result::Branch", >+ { branchcode => "branchcode" }, >+ { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, >+); >+ >+ >+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2019-10-02 13:43:57 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IklOycKlChqv9Tftm8rjqA >+ >+ >+# You can replace this text with custom code or comments, and it will be preserved on regeneration >+1; >-- >2.1.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 13881
:
37808
|
39837
|
40186
|
40569
|
40709
|
40895
|
41233
|
42804
|
43664
|
93445
|
93446
|
93447
|
93452
|
93453
|
93454
|
95287
|
95288
|
95289
|
95293
|
95294
|
95295
|
101033
|
101050
|
101064
|
101065
|
101479
|
101543
|
101544
|
101545
|
101546
|
101547
|
105009