-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from dreamfactorysoftware/develop
Merge Develop
- Loading branch information
Showing
2 changed files
with
24 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
|
||
namespace DreamFactory\Core\MongoDb\Enums; | ||
|
||
/** | ||
* Binary data types for MongoDB | ||
* https://www.mongodb.com/docs/manual/reference/bson-types/#binary-data | ||
*/ | ||
class BinaryDataTypes | ||
{ | ||
const GENERIC = 0; | ||
const FUNCTION_DATA = 1; | ||
const BINARY_OLD = 2; | ||
const UUID_OLD = 3; | ||
const UUID = 4; | ||
const MD5 = 5; | ||
const ENCRYPTED_BSON_VALUE = 6; | ||
const COMPRESSED_TIME_SERIES_DATA = 7; | ||
const CUSTOM_DATA = 128; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters