Use NSDMIs for realm::Property

This commit is contained in:
Thomas Goyne 2015-08-26 13:20:06 -07:00
parent 0ae1bb188e
commit 563a8374d0
1 changed files with 3 additions and 6 deletions

View File

@ -46,15 +46,12 @@ namespace realm {
};
struct Property {
public:
Property() : object_type(""), is_primary(false), is_indexed(false), is_nullable(false) {}
std::string name;
PropertyType type;
std::string object_type;
bool is_primary;
bool is_indexed;
bool is_nullable;
bool is_primary = false;
bool is_indexed = false;
bool is_nullable = false;
size_t table_column;
bool requires_index() { return is_primary || is_indexed; }