* @copyright Loic Blot 2015 */ namespace OCA\Weather\Db; use \OCP\AppFramework\Db\Entity; class CityEntity extends Entity { public $id; public $name; public $user_id; public function __construct() { $this->addType('id', 'integer'); $this->addType('user_id', 'integer'); } } ?>