naive-search 0.1.7 → 0.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: naive-search
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-11-17 00:00:00.000000000Z
12
+ date: 2012-01-09 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
- requirement: &2152132320 !ruby/object:Gem::Requirement
16
+ requirement: &2157828700 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: 3.1.1
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *2152132320
24
+ version_requirements: *2157828700
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: unicode_utils
27
- requirement: &2151924400 !ruby/object:Gem::Requirement
27
+ requirement: &2157828200 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ~>
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: 1.0.0
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *2151924400
35
+ version_requirements: *2157828200
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: sqlite3
38
- requirement: &2151919080 !ruby/object:Gem::Requirement
38
+ requirement: &2157827820 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ! '>='
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: '0'
44
44
  type: :development
45
45
  prerelease: false
46
- version_requirements: *2151919080
46
+ version_requirements: *2157827820
47
47
  description: Provides very simple full text searching for ActiveRecord, without depending
48
48
  on any particular SQL-feature, search server or anything like that.
49
49
  email:
@@ -85,7 +85,6 @@ files:
85
85
  - test/dummy/config/locales/en.yml
86
86
  - test/dummy/config/routes.rb
87
87
  - test/dummy/config.ru
88
- - test/dummy/db/development.sqlite3
89
88
  - test/dummy/db/migrate/20111107144413_create_people.rb
90
89
  - test/dummy/db/migrate/20111107212128_add_naive_search_index_to_person.rb
91
90
  - test/dummy/db/migrate/20111108071246_create_hotels.rb
@@ -96,7 +95,6 @@ files:
96
95
  - test/dummy/db/schema.rb
97
96
  - test/dummy/db/seeds.rb
98
97
  - test/dummy/db/test.sqlite3
99
- - test/dummy/log/development.log
100
98
  - test/dummy/log/test.log
101
99
  - test/dummy/public/404.html
102
100
  - test/dummy/public/422.html
@@ -161,7 +159,6 @@ test_files:
161
159
  - test/dummy/config/locales/en.yml
162
160
  - test/dummy/config/routes.rb
163
161
  - test/dummy/config.ru
164
- - test/dummy/db/development.sqlite3
165
162
  - test/dummy/db/migrate/20111107144413_create_people.rb
166
163
  - test/dummy/db/migrate/20111107212128_add_naive_search_index_to_person.rb
167
164
  - test/dummy/db/migrate/20111108071246_create_hotels.rb
@@ -172,7 +169,6 @@ test_files:
172
169
  - test/dummy/db/schema.rb
173
170
  - test/dummy/db/seeds.rb
174
171
  - test/dummy/db/test.sqlite3
175
- - test/dummy/log/development.log
176
172
  - test/dummy/log/test.log
177
173
  - test/dummy/public/404.html
178
174
  - test/dummy/public/422.html
@@ -1,123 +0,0 @@
1
-  (0.1ms) select sqlite_version(*)
2
-  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
-  (0.0ms) PRAGMA index_list("schema_migrations")
4
-  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
7
- Migrating to CreatePeople (20111107144413)
8
-  (0.1ms) select sqlite_version(*)
9
-  (0.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "surname" varchar(255), "description" varchar(255), "created_at" datetime, "updated_at" datetime) 
10
-  (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111107144413')
11
- Migrating to AddNaiveSearchIndexToPerson (20111107212128)
12
-  (0.5ms) ALTER TABLE "people" ADD "naive_search_index" text
13
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111107212128')
14
- Migrating to CreateHotels (20111108071246)
15
-  (0.5ms) CREATE TABLE "hotels" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" varchar(255), "rate" integer, "created_at" datetime, "updated_at" datetime) 
16
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111108071246')
17
- Migrating to AddNaiveSearchIndexToHotel (20111108082054)
18
-  (0.5ms) ALTER TABLE "hotels" ADD "naive_search_index" text
19
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111108082054')
20
- Migrating to AddAgeToPerson (20111108142454)
21
-  (0.5ms) ALTER TABLE "people" ADD "age" integer
22
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111108142454')
23
-  (0.3ms) select sqlite_version(*)
24
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
25
-  (0.1ms) PRAGMA index_list("hotels")
26
-  (0.0ms) PRAGMA index_list("people")
27
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
28
- Migrating to CreatePeople (20111107144413)
29
- Migrating to AddNaiveSearchIndexToPerson (20111107212128)
30
- Migrating to CreateHotels (20111108071246)
31
- Migrating to AddNaiveSearchIndexToHotel (20111108082054)
32
- Migrating to AddAgeToPerson (20111108142454)
33
-  (0.3ms) select sqlite_version(*)
34
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
35
-  (0.0ms) PRAGMA index_list("hotels")
36
-  (0.0ms) PRAGMA index_list("people")
37
-  (0.1ms) select sqlite_version(*)
38
-  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
39
-  (0.1ms) PRAGMA index_list("schema_migrations")
40
-  (29.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
41
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
42
- Migrating to CreatePeople (20111107144413)
43
-  (0.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "surname" varchar(255), "description" varchar(255), "created_at" datetime, "updated_at" datetime)
44
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111107144413')
45
- Migrating to AddNaiveSearchIndexToPerson (20111107212128)
46
-  (0.5ms) ALTER TABLE "people" ADD "naive_search_index" text
47
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111107212128')
48
- Migrating to CreateHotels (20111108071246)
49
-  (0.5ms) CREATE TABLE "hotels" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" varchar(255), "rate" integer, "created_at" datetime, "updated_at" datetime)
50
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111108071246')
51
- Migrating to AddNaiveSearchIndexToHotel (20111108082054)
52
-  (0.6ms) ALTER TABLE "hotels" ADD "naive_search_index" text
53
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111108082054')
54
- Migrating to AddAgeToPerson (20111108142454)
55
-  (0.5ms) ALTER TABLE "people" ADD "age" integer
56
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111108142454')
57
- Migrating to CreateCities (20111117144937)
58
-  (0.5ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
59
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117144937')
60
- Migrating to AddNaiveSearchIndexToCity (20111117155928)
61
-  (0.4ms) ALTER TABLE "cities" ADD "naive_search_index" text
62
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117155928')
63
-  (0.3ms) select sqlite_version(*)
64
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
65
-  (0.0ms) PRAGMA index_list("cities")
66
-  (0.0ms) PRAGMA index_list("hotels")
67
-  (0.0ms) PRAGMA index_list("people")
68
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
69
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
70
- SQL (16.1ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "arnold\nbentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
71
- SQL (0.7ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "minnie\nbentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
72
- SQL (0.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 44], ["created_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "robert\nbentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
73
- SQL (0.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "dennis\ndonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
74
- SQL (0.5ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 68], ["created_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "stan\ndonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
75
- SQL (0.6ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 66], ["created_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "tina\ndonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
76
- SQL (0.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "dan\nbentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
77
- SQL (0.5ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 68], ["created_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "julia\nbentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
78
- SQL (0.5ms) INSERT INTO "cities" ("created_at", "naive_search_index", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00], ["naive_search_index", "Örnsköldsvik"], ["name", "Örnsköldsvik"], ["updated_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
79
- SQL (0.4ms) INSERT INTO "cities" ("created_at", "naive_search_index", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00], ["naive_search_index", "Örebro"], ["name", "Örebro"], ["updated_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
80
- SQL (0.4ms) INSERT INTO "cities" ("created_at", "naive_search_index", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00], ["naive_search_index", "malmö"], ["name", "Malmö"], ["updated_at", Thu, 17 Nov 2011 15:05:29 UTC +00:00]]
81
-  (0.1ms) select sqlite_version(*)
82
-  (10.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
83
-  (0.1ms) PRAGMA index_list("schema_migrations")
84
-  (36.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
85
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
86
- Migrating to CreatePeople (20111107144413)
87
-  (0.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "surname" varchar(255), "description" varchar(255), "created_at" datetime, "updated_at" datetime)
88
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111107144413')
89
- Migrating to AddNaiveSearchIndexToPerson (20111107212128)
90
-  (0.5ms) ALTER TABLE "people" ADD "naive_search_index" text
91
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111107212128')
92
- Migrating to CreateHotels (20111108071246)
93
-  (0.5ms) CREATE TABLE "hotels" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" varchar(255), "rate" integer, "created_at" datetime, "updated_at" datetime)
94
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111108071246')
95
- Migrating to AddNaiveSearchIndexToHotel (20111108082054)
96
-  (0.5ms) ALTER TABLE "hotels" ADD "naive_search_index" text
97
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111108082054')
98
- Migrating to AddAgeToPerson (20111108142454)
99
-  (0.5ms) ALTER TABLE "people" ADD "age" integer
100
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111108142454')
101
- Migrating to CreateCities (20111117144937)
102
-  (0.5ms) CREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
103
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117144937')
104
- Migrating to AddNaiveSearchIndexToCity (20111117155928)
105
-  (0.4ms) ALTER TABLE "cities" ADD "naive_search_index" text
106
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117155928')
107
-  (0.3ms) select sqlite_version(*)
108
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
109
-  (0.0ms) PRAGMA index_list("cities")
110
-  (0.0ms) PRAGMA index_list("hotels")
111
-  (0.0ms) PRAGMA index_list("people")
112
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
113
- SQL (48.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["created_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00], ["description", "tall, skinny, dark, minnie's husband"], ["naive_search_index", "arnold\nbentley\ntall, skinny, dark, minnie's husband"], ["name", "Arnold"], ["surname", "Bentley"], ["updated_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
114
- SQL (0.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00], ["description", "short, fat, arnold's wife"], ["naive_search_index", "minnie\nbentley\nshort, fat, arnold's wife"], ["name", "Minnie"], ["surname", "Bentley"], ["updated_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
115
- SQL (0.5ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 44], ["created_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00], ["description", "short, skinny, arnold's brother"], ["naive_search_index", "robert\nbentley\nshort, skinny, arnold's brother"], ["name", "Robert"], ["surname", "Bentley"], ["updated_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
116
- SQL (0.5ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 46], ["created_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00], ["description", "ugly, annoying, minne's brother"], ["naive_search_index", "dennis\ndonaghue\nugly, annoying, minne's brother"], ["name", "Dennis"], ["surname", "Donaghue"], ["updated_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
117
- SQL (0.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 68], ["created_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00], ["description", "tall, handsome, minnie's dad"], ["naive_search_index", "stan\ndonaghue\ntall, handsome, minnie's dad"], ["name", "Stan"], ["surname", "Donaghue"], ["updated_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
118
- SQL (0.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 66], ["created_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00], ["description", "tall, sweet, minnie's mom"], ["naive_search_index", "tina\ndonaghue\ntall, sweet, minnie's mom"], ["name", "Tina"], ["surname", "Donaghue"], ["updated_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
119
- SQL (0.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 70], ["created_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00], ["description", "short, stupid, arnold's dad"], ["naive_search_index", "dan\nbentley\nshort, stupid, arnold's dad"], ["name", "Dan"], ["surname", "Bentley"], ["updated_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
120
- SQL (0.4ms) INSERT INTO "people" ("age", "created_at", "description", "naive_search_index", "name", "surname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 68], ["created_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00], ["description", "short, weird, arnold's mom"], ["naive_search_index", "julia\nbentley\nshort, weird, arnold's mom"], ["name", "Julia"], ["surname", "Bentley"], ["updated_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
121
- SQL (0.6ms) INSERT INTO "cities" ("created_at", "naive_search_index", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00], ["naive_search_index", "örnsköldsvik"], ["name", "Örnsköldsvik"], ["updated_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
122
- SQL (0.4ms) INSERT INTO "cities" ("created_at", "naive_search_index", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00], ["naive_search_index", "örebro"], ["name", "Örebro"], ["updated_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]
123
- SQL (0.4ms) INSERT INTO "cities" ("created_at", "naive_search_index", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00], ["naive_search_index", "malmö"], ["name", "Malmö"], ["updated_at", Thu, 17 Nov 2011 15:15:44 UTC +00:00]]