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

(-)a/Koha/Schema/Result/TagsApproval.pm (-4 / +4 lines)
Lines 27-33 __PACKAGE__->table("tags_approval"); Link Here
27
27
28
  data_type: 'varchar'
28
  data_type: 'varchar'
29
  is_nullable: 0
29
  is_nullable: 0
30
  size: 255
30
  size: 191
31
31
32
=head2 approved
32
=head2 approved
33
33
Lines 57-63 __PACKAGE__->table("tags_approval"); Link Here
57
57
58
__PACKAGE__->add_columns(
58
__PACKAGE__->add_columns(
59
  "term",
59
  "term",
60
  { data_type => "varchar", is_nullable => 0, size => 255 },
60
  { data_type => "varchar", is_nullable => 0, size => 191 },
61
  "approved",
61
  "approved",
62
  { data_type => "integer", default_value => 0, is_nullable => 0 },
62
  { data_type => "integer", default_value => 0, is_nullable => 0 },
63
  "date_approved",
63
  "date_approved",
Lines 122-129 __PACKAGE__->has_many( Link Here
122
);
122
);
123
123
124
124
125
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-03-04 19:32:39
125
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-01-18 08:31:57
126
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:V6O4TG3vfkRovbGgNP3HmA
126
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4cvTasSpJ2c1vvVVe/R3UQ
127
127
128
128
129
# You can replace this text with custom content, and it will be preserved on regeneration
129
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/TagsIndex.pm (-5 / +4 lines)
Lines 28-34 __PACKAGE__->table("tags_index"); Link Here
28
  data_type: 'varchar'
28
  data_type: 'varchar'
29
  is_foreign_key: 1
29
  is_foreign_key: 1
30
  is_nullable: 0
30
  is_nullable: 0
31
  size: 255
31
  size: 191
32
32
33
=head2 biblionumber
33
=head2 biblionumber
34
34
Lines 46-52 __PACKAGE__->table("tags_index"); Link Here
46
46
47
__PACKAGE__->add_columns(
47
__PACKAGE__->add_columns(
48
  "term",
48
  "term",
49
  { data_type => "varchar", is_foreign_key => 1, is_nullable => 0, size => 255 },
49
  { data_type => "varchar", is_foreign_key => 1, is_nullable => 0, size => 191 },
50
  "biblionumber",
50
  "biblionumber",
51
  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
51
  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
52
  "weight",
52
  "weight",
Lines 100-107 __PACKAGE__->belongs_to( Link Here
100
);
100
);
101
101
102
102
103
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
103
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-01-18 08:31:57
104
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LCvvyig+memFWmWUdCStXQ
104
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ewTrnc9D1jcoyf65+MrSGQ
105
105
106
106
107
# You can replace this text with custom content, and it will be preserved on regeneration
107
# You can replace this text with custom content, and it will be preserved on regeneration
108
- 

Return to bug 18336