8a89f6601d
Implemented untested UniqueOrderedIndex. Introduced TypeGroupEdge/Vertex into database. Added Index capabilityes to PropertyFamily. Added method for adding index. Added method for removing index.
11 lines
145 B
C++
11 lines
145 B
C++
#pragma once
|
|
|
|
#include "storage/model/properties/properties.hpp"
|
|
|
|
template <class TG>
|
|
class PropertyModel
|
|
{
|
|
public:
|
|
Properties<TG> props;
|
|
};
|