geonames_rails 0.1.5 → 0.1.6
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.
@@ -46,9 +46,9 @@ class CreateGeonamesTables < ActiveRecord::Migration
|
|
46
46
|
# [1] name : name of geographical point (utf8) varchar(200)
|
47
47
|
t.string :name, :null => false
|
48
48
|
# [2] asciiname : name of geographical point in plain ascii characters, varchar(200)
|
49
|
-
t.string :
|
49
|
+
t.string :ascii_name
|
50
50
|
# [3] alternatenames : alternatenames, comma separated varchar(4000)
|
51
|
-
t.text :
|
51
|
+
t.text :alternate_name
|
52
52
|
# [4] latitude : latitude in decimal degrees (wgs84)
|
53
53
|
t.decimal :latitude, :precision => 14, :scale => 8, :null => false
|
54
54
|
# [5] longitude : longitude in decimal degrees (wgs84)
|