From 16198fff6de346e526ce32c1730d02f09ba4504e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?ANDRE=20s=C3=A9bastien?= <sandre@afi-sa.fr> Date: Fri, 29 Jul 2022 10:24:52 +0200 Subject: [PATCH] hotline : #160807 : growth id_dewey --- VERSIONS_HOTLINE/160807 | 1 + cosmogramme/sql/patch/patch_436.php | 10 ++++++++++ tests/db/UpgradeDBTest.php | 22 ++++++++++++++++++++++ 3 files changed, 33 insertions(+) create mode 100644 VERSIONS_HOTLINE/160807 create mode 100644 cosmogramme/sql/patch/patch_436.php diff --git a/VERSIONS_HOTLINE/160807 b/VERSIONS_HOTLINE/160807 new file mode 100644 index 00000000000..a12978e4585 --- /dev/null +++ b/VERSIONS_HOTLINE/160807 @@ -0,0 +1 @@ + - correctif #160807 : Cosmogramme : agrandir zone identifiant dewey pour éviter de bloquer un import cosmogramme \ No newline at end of file diff --git a/cosmogramme/sql/patch/patch_436.php b/cosmogramme/sql/patch/patch_436.php new file mode 100644 index 00000000000..7efde9f875b --- /dev/null +++ b/cosmogramme/sql/patch/patch_436.php @@ -0,0 +1,10 @@ +<?php +$adapter = Zend_Db_Table_Abstract::getDefaultAdapter(); +try { + $adapter->query('alter table codif_dewey drop primary key'); +} catch(Exception $e) {} + +try { + $adapter->query('alter table codif_dewey modify id_dewey varchar(255)'); + $adapter->query('alter table codif_dewey add primary key (id_dewey)'); +} catch(Exception $e) {} diff --git a/tests/db/UpgradeDBTest.php b/tests/db/UpgradeDBTest.php index 82e123f310c..5686a10b78d 100644 --- a/tests/db/UpgradeDBTest.php +++ b/tests/db/UpgradeDBTest.php @@ -4699,3 +4699,25 @@ class UpgradeDB_435_Test extends UpgradeDBTestCase { $this->assertFieldType('records_identifiers', $field, $type); } } + + + + +class UpgradeDB_436_Test extends UpgradeDBTestCase { + public function prepare() { + $this->silentQuery('alter table codif_dewey modify id_dewey varchar(30)'); + } + + + /** @test */ + public function tableCodifDeweyShouldHaveColumnIdDeweyWithTypeVarchar255() { + $this->assertFieldType('codif_dewey', 'id_dewey', 'varchar(255)'); + } + + + /** @test */ + public function tableCodifDeweyShouldHaveIdDeweyAsPrimary() { + $columns = $this->query("show columns from codif_dewey where field='id_dewey'")->fetch(); + $this->assertEquals('PRI', $columns['Key']); + } +} -- GitLab