typo
gitea/salix/pipeline/head Build queued... Details

This commit is contained in:
Alex Moreno 2022-06-30 13:23:57 +02:00
parent ca767b84f0
commit c88df46b4f
1 changed files with 13 additions and 13 deletions

View File

@ -31063,24 +31063,24 @@ DROP TABLE IF EXISTS `entry`;
/*!40101 SET character_set_client = utf8 */; /*!40101 SET character_set_client = utf8 */;
CREATE TABLE `entry` ( CREATE TABLE `entry` (
`id` int(11) NOT NULL AUTO_INCREMENT, `id` int(11) NOT NULL AUTO_INCREMENT,
`supplierFk` int(11) NOT NULL DEFAULT 644, `supplierFk` int(11) NOT NULL DEFAULT '644',
`dated` datetime NOT NULL, `dated` datetime NOT NULL,
`ref` varchar(50) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `ref` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`isBooked` tinyint(1) NOT NULL DEFAULT 0, `isBooked` tinyint(1) NOT NULL DEFAULT '0',
`isExcludedFromAvailable` tinyint(1) NOT NULL DEFAULT 0, `isExcludedFromAvailable` tinyint(1) NOT NULL DEFAULT 0,
`notes` longtext COLLATE utf8mb3_unicode_ci DEFAULT NULL, `notes` longtext COLLATE utf8_unicode_ci,
`isConfirmed` tinyint(1) NOT NULL DEFAULT 0, `isConfirmed` tinyint(1) NOT NULL DEFAULT '0',
`isOrdered` tinyint(1) NOT NULL DEFAULT 0, `isOrdered` tinyint(1) NOT NULL DEFAULT '0',
`isRaid` tinyint(1) NOT NULL DEFAULT 0, `isRaid` tinyint(1) NOT NULL DEFAULT '0',
`commission` float DEFAULT 0, `commission` float DEFAULT '0',
`created` timestamp NOT NULL DEFAULT current_timestamp(), `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`evaNotes` varchar(45) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `evaNotes` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,
`travelFk` int(11) unsigned DEFAULT NULL, `travelFk` int(11) unsigned DEFAULT NULL,
`currencyFk` tinyint(3) unsigned DEFAULT 1, `currencyFk` tinyint(3) unsigned DEFAULT '1',
`companyFk` smallint(5) unsigned NOT NULL DEFAULT 442, `companyFk` smallint(5) unsigned NOT NULL DEFAULT '442',
`gestDocFk` int(11) DEFAULT NULL, `gestDocFk` int(11) DEFAULT NULL,
`invoiceInFk` mediumint(8) unsigned DEFAULT NULL, `invoiceInFk` mediumint(8) unsigned DEFAULT NULL,
`isBlocked` tinyint(4) NOT NULL DEFAULT 0, `isBlocked` tinyint(4) NOT NULL DEFAULT '0',
`loadPriority` int(11) DEFAULT NULL, `loadPriority` int(11) DEFAULT NULL,
`kop` int(11) DEFAULT NULL, `kop` int(11) DEFAULT NULL,
`sub` mediumint(8) unsigned DEFAULT NULL, `sub` mediumint(8) unsigned DEFAULT NULL,