1: <?php
2:
3: /**
4: * This file is part of the Nette Framework (https://nette.org)
5: * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
6: */
7:
8: namespace Nette\Database;
9:
10: use Nette;
11:
12:
13: /** @deprecated */
14: interface IReflection extends IConventions
15: {
16: /** @deprecated */
17: const
18: FIELD_TEXT = 'string',
19: FIELD_BINARY = 'bin',
20: FIELD_BOOL = 'bool',
21: FIELD_INTEGER = 'int',
22: FIELD_FLOAT = 'float',
23: FIELD_DATE = 'date',
24: FIELD_TIME = 'time',
25: FIELD_DATETIME = 'datetime',
26: FIELD_UNIX_TIMESTAMP = 'timestamp',
27: FIELD_TIME_INTERVAL = 'timeint';
28:
29: }
30: