blob: d22fb4296a86ea96972534c855dcb535d97b82e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
class CreateCountries < ActiveRecord::Migration
def change
create_table :countries do |t|
t.string :name
t.string :country_code
t.string :international_call_prefix
t.string :trunk_prefix
t.timestamps
end
end
end
|