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

(-)a/installer/data/mysql/kohastructure.sql (-2 / +1 lines)
Lines 3460-3466 CREATE TABLE items_search_fields ( Link Here
3460
-- Table structure for table 'account_credits'
3460
-- Table structure for table 'account_credits'
3461
--
3461
--
3462
DROP TABLE IF EXISTS account_credits;
3462
DROP TABLE IF EXISTS account_credits;
3463
CREATE TABLE IF account_credits (
3463
CREATE TABLE account_credits (
3464
    credit_id int(11) NOT NULL AUTO_INCREMENT,     -- The unique id for this credit
3464
    credit_id int(11) NOT NULL AUTO_INCREMENT,     -- The unique id for this credit
3465
    borrowernumber int(11) NOT NULL,               -- The borrower this credit applies to
3465
    borrowernumber int(11) NOT NULL,               -- The borrower this credit applies to
3466
    `type` varchar(255) NOT NULL,                  -- The type of credit this is ( defined by Koha::Accounts::CreditTypes )
3466
    `type` varchar(255) NOT NULL,                  -- The type of credit this is ( defined by Koha::Accounts::CreditTypes )
3467
- 

Return to bug 6427