We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ccfe91 commit 0fc5e44Copy full SHA for 0fc5e44
isuumo/webapp/mysql/db/0_Schema.sql
@@ -20,14 +20,16 @@ CREATE TABLE isuumo.estate
20
popularity INTEGER NOT NULL,
21
INDEX idx_rent (rent),
22
INDEX idx_door_height (door_height),
23
- INDEX idx_door_width (door_width)
+ INDEX idx_door_width (door_width),
24
+ INDEX index_lat (latitude, longitude)
25
);
26
27
CREATE TABLE isuumo.estate_features
28
(
29
estate_id INTEGER NOT NULL,
30
feature VARCHAR(64) NOT NULL,
- INDEX idx_estate_id (estate_id)
31
+ INDEX idx_estate_id (estate_id),
32
+ INDEX idx_feature (feature)
33
34
35
CREATE TABLE isuumo.chair
0 commit comments