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

(-)a/installer/data/mysql/kohastructure.sql (-2 / +1 lines)
Lines 3480-3486 CREATE TABLE discharges ( Link Here
3480
-- Table structure for table 'account_credits'
3480
-- Table structure for table 'account_credits'
3481
--
3481
--
3482
DROP TABLE IF EXISTS account_credits;
3482
DROP TABLE IF EXISTS account_credits;
3483
CREATE TABLE IF account_credits (
3483
CREATE TABLE account_credits (
3484
    credit_id int(11) NOT NULL AUTO_INCREMENT,     -- The unique id for this credit
3484
    credit_id int(11) NOT NULL AUTO_INCREMENT,     -- The unique id for this credit
3485
    borrowernumber int(11) NOT NULL,               -- The borrower this credit applies to
3485
    borrowernumber int(11) NOT NULL,               -- The borrower this credit applies to
3486
    `type` varchar(255) NOT NULL,                  -- The type of credit this is ( defined by Koha::Accounts::CreditTypes )
3486
    `type` varchar(255) NOT NULL,                  -- The type of credit this is ( defined by Koha::Accounts::CreditTypes )
3487
- 

Return to bug 6427