Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | public function install() |
||
22 | { |
||
23 | $this->dropTables(array('versions_bundles')); |
||
24 | $this->executeSQL(' |
||
25 | CREATE TABLE `versions_bundles` ( |
||
26 | `id` int(11) NOT NULL AUTO_INCREMENT, |
||
27 | `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, |
||
28 | `installationDate` datetime NOT NULL, |
||
29 | `installedVersion` varchar(10) COLLATE utf8_unicode_ci NOT NULL, |
||
30 | `updateDate` datetime DEFAULT NULL, |
||
31 | PRIMARY KEY (`id`) |
||
32 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci |
||
33 | '); |
||
34 | |||
35 | return new Version('1.0.0'); |
||
36 | } |
||
37 | } |
||
38 |
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.