Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/storage/DifferentialChangeset.php
| Show All 24 Lines | protected function getConfiguration() { | ||||
| return array( | return array( | ||||
| self::CONFIG_SERIALIZATION => array( | self::CONFIG_SERIALIZATION => array( | ||||
| 'metadata' => self::SERIALIZATION_JSON, | 'metadata' => self::SERIALIZATION_JSON, | ||||
| 'oldProperties' => self::SERIALIZATION_JSON, | 'oldProperties' => self::SERIALIZATION_JSON, | ||||
| 'newProperties' => self::SERIALIZATION_JSON, | 'newProperties' => self::SERIALIZATION_JSON, | ||||
| 'awayPaths' => self::SERIALIZATION_JSON, | 'awayPaths' => self::SERIALIZATION_JSON, | ||||
| ), | ), | ||||
| self::CONFIG_COLUMN_SCHEMA => array( | self::CONFIG_COLUMN_SCHEMA => array( | ||||
| 'oldFile' => 'text255?', | 'oldFile' => 'bytes?', | ||||
| 'filename' => 'text255', | 'filename' => 'bytes', | ||||
| 'changeType' => 'uint32', | 'changeType' => 'uint32', | ||||
| 'fileType' => 'uint32', | 'fileType' => 'uint32', | ||||
| 'addLines' => 'uint32', | 'addLines' => 'uint32', | ||||
| 'delLines' => 'uint32', | 'delLines' => 'uint32', | ||||
| // T6203/NULLABILITY | // T6203/NULLABILITY | ||||
| // These should all be non-nullable, and store reasonable default | // These should all be non-nullable, and store reasonable default | ||||
| // JSON values if empty. | // JSON values if empty. | ||||
| ▲ Show 20 Lines • Show All 180 Lines • Show Last 20 Lines | |||||