Merge remote-tracking branch 'upstream/develop' into 1501-enhanced-poco

Conflicts:
	boot.php
	update.php
This commit is contained in:
Michael Vogel 2015-01-04 19:32:08 +01:00
commit 7084adfd1c
3 changed files with 17 additions and 9 deletions

View file

@ -824,6 +824,7 @@ function db_definition() {
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
"name" => array("type" => "varchar(128)", "not null" => "1", "default" => ""),
"locked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
"created" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
),
"indexes" => array(
"PRIMARY" => array("id"),