geonames_rails 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
@@ -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)
|