diff options
-rw-r--r-- | engine/schema/mysql.sql | 2 | ||||
-rw-r--r-- | engine/schema/upgrades/2010030101.sql | 1 | ||||
-rw-r--r-- | version.php | 4 |
3 files changed, 4 insertions, 3 deletions
diff --git a/engine/schema/mysql.sql b/engine/schema/mysql.sql index 638f7ce26..56c2a4077 100644 --- a/engine/schema/mysql.sql +++ b/engine/schema/mysql.sql @@ -130,7 +130,7 @@ CREATE TABLE `prefix_entities` ( `access_id` int(11) NOT NULL, `time_created` int(11) NOT NULL, `time_updated` int(11) NOT NULL, - `last_action` int(11) NOT NULL, + `last_action` int(11) NOT NULL DEFAULT '0', `enabled` enum('yes','no') NOT NULL DEFAULT 'yes', PRIMARY KEY (`guid`), KEY `type` (`type`), diff --git a/engine/schema/upgrades/2010030101.sql b/engine/schema/upgrades/2010030101.sql new file mode 100644 index 000000000..cc7af98c9 --- /dev/null +++ b/engine/schema/upgrades/2010030101.sql @@ -0,0 +1 @@ +ALTER TABLE `prefix_entities` CHANGE `last_action` `last_action` INT( 11 ) NOT NULL DEFAULT '0' diff --git a/version.php b/version.php index 9eecf42fc..00a81d10d 100644 --- a/version.php +++ b/version.php @@ -12,7 +12,7 @@ // YYYYMMDD = Elgg Date // XX = Interim incrementer -$version = 2010012901; +$version = 2010030101; // Human-friendly version name -$release = '1.7RC1'; +$release = '1.7'; |