5 lines
145 B
MySQL
5 lines
145 B
MySQL
|
ALTER TABLE hedera.orderRow
|
||
|
ADD isReserved BOOL NOT NULL DEFAULT TRUE
|
||
|
COMMENT 'Whether has an available reservation',
|
||
|
ADD INDEX(isReserved);
|