Quelques corrections + init du module ClickAndCollect

This commit is contained in:
2021-03-11 18:47:03 +01:00
parent 2e82f5643a
commit 57e69ddd2f
48 changed files with 2224 additions and 57 deletions

View File

@@ -16,6 +16,7 @@
<column name="zipcode" required="true" size="10" type="VARCHAR" />
<column name="city" required="true" size="100" type="VARCHAR" />
<column name="access_comment" size="400" type="VARCHAR" />
<column name="click_and_collect" required="true" type="TINYINT" defaultValue="0" />
</table>

View File

@@ -23,6 +23,7 @@ CREATE TABLE `pdr_places`
`zipcode` VARCHAR(10) NOT NULL,
`city` VARCHAR(100) NOT NULL,
`access_comment` VARCHAR(400),
`click_and_collect` TINYINT DEFAULT 0 NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB;