View | Details | Raw Unified | Return to bug 18970
Collapse All | Expand All

(-)a/Koha/Schema/Result/Autoincrement.pm (-1 / +65 lines)
Line 0 Link Here
0
- 
1
use utf8;
2
package Koha::Schema::Result::Autoincrement;
3
4
# Created by DBIx::Class::Schema::Loader
5
# DO NOT MODIFY THE FIRST PART OF THIS FILE
6
7
=head1 NAME
8
9
Koha::Schema::Result::Autoincrement
10
11
=cut
12
13
use strict;
14
use warnings;
15
16
use base 'DBIx::Class::Core';
17
18
=head1 TABLE: C<autoincrement>
19
20
=cut
21
22
__PACKAGE__->table("autoincrement");
23
24
=head1 ACCESSORS
25
26
=head2 tablename
27
28
  data_type: 'varchar'
29
  default_value: (empty string)
30
  is_nullable: 0
31
  size: 255
32
33
=head2 counter
34
35
  data_type: 'integer'
36
  is_nullable: 1
37
38
=cut
39
40
__PACKAGE__->add_columns(
41
  "tablename",
42
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
43
  "counter",
44
  { data_type => "integer", is_nullable => 1 },
45
);
46
47
=head1 PRIMARY KEY
48
49
=over 4
50
51
=item * L</tablename>
52
53
=back
54
55
=cut
56
57
__PACKAGE__->set_primary_key("tablename");
58
59
60
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-07-21 09:12:28
61
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/oqngm8/JHahowIfaO6zTA
62
63
64
# You can replace this text with custom code or comments, and it will be preserved on regeneration
65
1;

Return to bug 18970