https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36313 --- Comment #11 from Christian Pine <veigasgcdc@gmail.com> --- (In reply to Jonathan Druart from comment #7)
Christian, can you confirm this? Do you see the column in the DB?
Use 'desc checkout_renewals;' in the database CLI.
here is the result ------> mysql> desc checkout_renewals; +--------------+----------------------------+------+-----+-------------------+-------------------+ | Field | Type | Null | Key | Default | Extra | +--------------+----------------------------+------+-----+-------------------+-------------------+ | renewal_id | int | NO | PRI | NULL | auto_increment | | checkout_id | int | YES | | NULL | | | renewer_id | int | YES | MUL | NULL | | | seen | tinyint(1) | YES | | 0 | | | interface | varchar(16) | NO | | NULL | | | timestamp | timestamp | NO | | CURRENT_TIMESTAMP | DEFAULT_GENERATED | | renewal_type | enum('Automatic','Manual') | NO | | Manual | | +--------------+----------------------------+------+-----+-------------------+-------------------+ 7 rows in set (0.00 sec) -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.