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

(-)a/Koha/Schema/Result/BiblioFramework.pm (-3 / +10 lines)
Lines 37-42 __PACKAGE__->table("biblio_framework"); Link Here
37
  is_nullable: 0
37
  is_nullable: 0
38
  size: 255
38
  size: 255
39
39
40
=head2 is_default
41
42
  data_type: 'tinyint'
43
  default_value: 0
44
  is_nullable: 0
45
40
=cut
46
=cut
41
47
42
__PACKAGE__->add_columns(
48
__PACKAGE__->add_columns(
Lines 44-49 __PACKAGE__->add_columns( Link Here
44
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 4 },
50
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 4 },
45
  "frameworktext",
51
  "frameworktext",
46
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
52
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
53
  "is_default",
54
  { data_type => "tinyint", default_value => 0, is_nullable => 0, is_boolean => 1 },
47
);
55
);
48
56
49
=head1 PRIMARY KEY
57
=head1 PRIMARY KEY
Lines 59-66 __PACKAGE__->add_columns( Link Here
59
__PACKAGE__->set_primary_key("frameworkcode");
67
__PACKAGE__->set_primary_key("frameworkcode");
60
68
61
69
62
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
70
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-04-06 21:40:14
63
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KY1w7J/5cBsz9VV7QEBKPw
71
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0Ea0NwtNn2qvQBbemKImQQ
64
72
65
# FIXME This should not be needed, we need to add the FK at DB level
73
# FIXME This should not be needed, we need to add the FK at DB level
66
# It cannot be done now because the default framework (frameworkcode=='')
74
# It cannot be done now because the default framework (frameworkcode=='')
67
- 

Return to bug 23111