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

(-)a/Koha/Schema/Result/MessageQueue.pm (+7 lines)
Lines 82-87 __PACKAGE__->table("message_queue"); Link Here
82
  data_type: 'mediumtext'
82
  data_type: 'mediumtext'
83
  is_nullable: 1
83
  is_nullable: 1
84
84
85
=head2 sentto_address
86
87
  data_type: 'mediumtext'
88
  is_nullable: 1
89
85
=head2 from_address
90
=head2 from_address
86
91
87
  data_type: 'mediumtext'
92
  data_type: 'mediumtext'
Lines 125-130 __PACKAGE__->add_columns( Link Here
125
  },
130
  },
126
  "to_address",
131
  "to_address",
127
  { data_type => "mediumtext", is_nullable => 1 },
132
  { data_type => "mediumtext", is_nullable => 1 },
133
  "sentto_address",
134
  { data_type => "mediumtext", is_nullable => 1 },
128
  "from_address",
135
  "from_address",
129
  { data_type => "mediumtext", is_nullable => 1 },
136
  { data_type => "mediumtext", is_nullable => 1 },
130
  "content_type",
137
  "content_type",
(-)a/installer/data/mysql/kohastructure.sql (+1 lines)
Lines 2565-2570 CREATE TABLE `message_queue` ( Link Here
2565
  `status` enum('sent','pending','failed','deleted') NOT NULL default 'pending',
2565
  `status` enum('sent','pending','failed','deleted') NOT NULL default 'pending',
2566
  `time_queued` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
2566
  `time_queued` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
2567
  `to_address` mediumtext,
2567
  `to_address` mediumtext,
2568
  `sentto_address` mediumtext,
2568
  `from_address` mediumtext,
2569
  `from_address` mediumtext,
2569
  `content_type` text,
2570
  `content_type` text,
2570
  PRIMARY KEY `message_id` (`message_id`),
2571
  PRIMARY KEY `message_id` (`message_id`),
(-)a/installer/data/mysql/updatedatabase.pl (-2 lines)
Lines 11686-11692 foreach my $file ( sort readdir $dirh ) { Link Here
11686
    }
11686
    }
11687
}
11687
}
11688
11688
11689
11690
=head1 FUNCTIONS
11689
=head1 FUNCTIONS
11691
11690
11692
=head2 TableExists($table)
11691
=head2 TableExists($table)
11693
- 

Return to bug 8000