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

(-)a/Koha/Schema/Result/SocialData.pm (-3 / +4 lines)
Lines 26-31 __PACKAGE__->table("social_data"); Link Here
26
=head2 isbn
26
=head2 isbn
27
27
28
  data_type: 'varchar'
28
  data_type: 'varchar'
29
  default_value: (empty string)
29
  is_nullable: 0
30
  is_nullable: 0
30
  size: 30
31
  size: 30
31
32
Lines 64-70 __PACKAGE__->table("social_data"); Link Here
64
65
65
__PACKAGE__->add_columns(
66
__PACKAGE__->add_columns(
66
  "isbn",
67
  "isbn",
67
  { data_type => "varchar", is_nullable => 0, size => 30 },
68
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 30 },
68
  "num_critics",
69
  "num_critics",
69
  { data_type => "integer", is_nullable => 1 },
70
  { data_type => "integer", is_nullable => 1 },
70
  "num_critics_pro",
71
  "num_critics_pro",
Lines 92-99 __PACKAGE__->add_columns( Link Here
92
__PACKAGE__->set_primary_key("isbn");
93
__PACKAGE__->set_primary_key("isbn");
93
94
94
95
95
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2018-11-13 15:24:28
96
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-05-10 12:02:53
96
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:l44tYFEfIKX0xXzj6AHInQ
97
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:zu/RochQZmZJZHQJnkLQvg
97
98
98
99
99
# You can replace this text with custom content, and it will be preserved on regeneration
100
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/installer/data/mysql/kohastructure.sql (-2 / +1 lines)
Lines 3311-3317 CREATE TABLE `biblioimages` ( -- local cover images Link Here
3311
3311
3312
DROP TABLE IF EXISTS `social_data`;
3312
DROP TABLE IF EXISTS `social_data`;
3313
CREATE TABLE IF NOT EXISTS `social_data` (
3313
CREATE TABLE IF NOT EXISTS `social_data` (
3314
  `isbn` VARCHAR(30),
3314
  `isbn` VARCHAR(30) NOT NULL DEFAULT '',
3315
  `num_critics` INT,
3315
  `num_critics` INT,
3316
  `num_critics_pro` INT,
3316
  `num_critics_pro` INT,
3317
  `num_quotations` INT,
3317
  `num_quotations` INT,
3318
- 

Return to bug 22782