summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorPeter Kozak <spag@golwen.net>2013-05-31 14:33:30 +0200
committerPeter Kozak <spag@golwen.net>2013-05-31 14:33:30 +0200
commit136651e0795a6e8523af1102e20cbdd76c59d7a1 (patch)
tree204b65863b259a144147ccf3595415398a9c262b /db
parentf1260d478acae4a5fc34d7231530a6c6ba5ce0ba (diff)
geo_ip_country model added
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20130531063549_create_geo_ip_countries.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/db/migrate/20130531063549_create_geo_ip_countries.rb b/db/migrate/20130531063549_create_geo_ip_countries.rb
new file mode 100644
index 0000000..9124756
--- /dev/null
+++ b/db/migrate/20130531063549_create_geo_ip_countries.rb
@@ -0,0 +1,15 @@
+class CreateGeoIpCountries < ActiveRecord::Migration
+ def change
+ create_table :geo_ip_countries do |t|
+ t.string :from, :limit => '15'
+ t.string :to, :limit => '15'
+ t.integer :n_from
+ t.integer :n_to
+ t.integer :country_id
+ t.string :country_code, :limit => '2'
+ t.string :country_name, :limit => '64'
+
+ t.timestamps
+ end
+ end
+end