1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-22 02:08:47 +02:00
phorge-phorge/src/applications/differential/storage/DifferentialDiffProperty.php

27 lines
574 B
PHP
Raw Normal View History

2011-01-24 21:07:34 +01:00
<?php
final class DifferentialDiffProperty extends DifferentialDAO {
2011-01-24 21:07:34 +01:00
protected $diffID;
protected $name;
protected $data;
protected function getConfiguration() {
return array(
self::CONFIG_SERIALIZATION => array(
'data' => self::SERIALIZATION_JSON,
),
self::CONFIG_COLUMN_SCHEMA => array(
'name' => 'text128',
),
self::CONFIG_KEY_SCHEMA => array(
'diffID' => array(
'columns' => array('diffID', 'name'),
'unique' => true,
),
),
) + parent::getConfiguration();
2011-01-24 21:07:34 +01:00
}
}