2010-10-19 23:37:17 +01:00
< ? php
2020-06-28 23:41:46 +01:00
// This file is part of GNU social - https://www.gnu.org/software/social
//
// GNU social is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// GNU social is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
2010-10-19 23:37:17 +01:00
/**
* Table Definition for schema_version
*/
2020-06-28 23:41:46 +01:00
defined ( 'GNUSOCIAL' ) || die ();
2011-08-22 22:52:02 +01:00
class Schema_version extends Managed_DataObject
2010-10-19 23:37:17 +01:00
{
###START_AUTOCODE
/* the code below is auto generated do not remove the above tag */
public $__table = 'schema_version' ; // table name
public $table_name ; // varchar(64) primary_key not_null
2020-07-23 16:16:56 +01:00
public $checksum ; // varchar(128) not_null
2020-06-28 23:41:46 +01:00
public $modified ; // timestamp() not_null default_CURRENT_TIMESTAMP
2010-10-19 23:37:17 +01:00
/* the code above is auto generated do not remove the tag below */
###END_AUTOCODE
2011-08-22 22:52:02 +01:00
public static function schemaDef ()
{
return array (
'description' => 'To avoid checking database structure all the time, we store a checksum of the expected schema info for each table here. If it has not changed since the last time we checked the table, we can leave it as is.' ,
'fields' => array (
'table_name' => array ( 'type' => 'varchar' , 'length' => '64' , 'not null' => true , 'description' => 'Table name' ),
2020-07-23 16:16:56 +01:00
'checksum' => array ( 'type' => 'varchar' , 'length' => '128' , 'not null' => true , 'description' => 'Checksum of schema array; a mismatch indicates we should check the table more thoroughly.' ),
2020-06-28 23:41:46 +01:00
'modified' => array ( 'type' => 'timestamp' , 'not null' => true , 'description' => 'date this record was modified' ),
2011-08-22 22:52:02 +01:00
),
'primary key' => array ( 'table_name' ),
);
}
2010-10-19 23:37:17 +01:00
}