define('GNUSOCIAL_ENGINE', 'GNU social');
define('GNUSOCIAL_ENGINE_URL', 'https://www.gnu.org/software/social/');
-define('GNUSOCIAL_BASE_VERSION', '1.20.6');
+define('GNUSOCIAL_BASE_VERSION', '1.20.7');
define('GNUSOCIAL_LIFECYCLE', 'release'); // 'dev', 'alpha[0-9]+', 'beta[0-9]+', 'rc[0-9]+', 'release'
define('GNUSOCIAL_VERSION', GNUSOCIAL_BASE_VERSION . '-' . GNUSOCIAL_LIFECYCLE);
'fields' => [
'type' => ['type' => 'varchar', 'length' => 191, 'description' => 'Type of countable entity'],
'count' => ['type' => 'int', 'size' => 'int', 'default' => 0, 'description' => 'Number of entities of this type'],
- 'modified' => ['type' => 'timestamp', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'],
+ 'modified' => ['type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'],
],
'primary key' => ['type'],
'unique keys' => [
public $user_id; // The User with the prefs
public $hide_profile_link; // Hide the link on the profile block?
public $created; // datetime
- public $modified; // datetime
+ public $modified; // timestamp
/**
* The One True Thingy that must be defined and declared.
'type' => 'datetime',
'not null' => true,
'description' => 'date this record was created',
- 'default' => 'CURRENT_TIMESTAMP'
],
'modified' => [
'type' => 'timestamp',
'not null' => true,
'description' => 'date this record was modified',
- 'default' => 'CURRENT_TIMESTAMP'
],
],
'primary key' => ['user_id'],