-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
98 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,23 @@ | ||
-- Modifications de structure de la bdd d'une version à la suivante | ||
|
||
-- 1.1.0 to | ||
|
||
CREATE TABLE `agenda` ( | ||
`id` int(12) UNSIGNED NOT NULL, | ||
`userid` smallint(5) UNSIGNED NOT NULL DEFAULT '3', | ||
`start` datetime DEFAULT NULL, | ||
`end` datetime DEFAULT NULL, | ||
`type` varchar(10) DEFAULT NULL, | ||
`dateAdd` datetime DEFAULT NULL, | ||
`patientid` mediumint(6) UNSIGNED DEFAULT NULL, | ||
`statut` enum('actif','deleted') DEFAULT 'actif', | ||
`absente` enum('non','oui') DEFAULT 'non', | ||
`motif` text | ||
) ENGINE=MyISAM DEFAULT CHARSET=utf8; | ||
|
||
ALTER TABLE `agenda` | ||
ADD PRIMARY KEY (`id`,`userid`) USING BTREE, | ||
ADD KEY `patientid` (`patientid`); | ||
|
||
-- 1.0.1 to 1.1.0 | ||
ALTER TABLE inbox ADD COLUMN mailHeaderInfos blob AFTER txtFileName; |