mirror of
https://github.com/internetee/registry.git
synced 2025-07-02 17:23:34 +02:00
Merge branch 'contact_ident'
Conflicts: db/schema.rb
This commit is contained in:
commit
8a4b91c3b7
8 changed files with 45 additions and 6 deletions
5
db/migrate/20140730082532_add_ident_type_to_contact.rb
Normal file
5
db/migrate/20140730082532_add_ident_type_to_contact.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class AddIdentTypeToContact < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :contacts, :ident_type, :string
|
||||
end
|
||||
end
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20140730082358) do
|
||||
ActiveRecord::Schema.define(version: 20140730082532) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -37,6 +37,7 @@ ActiveRecord::Schema.define(version: 20140730082358) do
|
|||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.string "ident"
|
||||
t.string "ident_type"
|
||||
end
|
||||
|
||||
create_table "countries", force: true do |t|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue