mirror of
https://github.com/internetee/registry.git
synced 2025-07-03 01:33:36 +02:00
Added auth info to contact
This commit is contained in:
parent
eaa9b015e2
commit
c1f90754d1
7 changed files with 50 additions and 27 deletions
5
db/migrate/20140815114000_add_auth_info_to_contact.rb
Normal file
5
db/migrate/20140815114000_add_auth_info_to_contact.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class AddAuthInfoToContact < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :contacts, :auth_info, :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: 20140815110028) do
|
||||
ActiveRecord::Schema.define(version: 20140815114000) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -43,6 +43,7 @@ ActiveRecord::Schema.define(version: 20140815110028) do
|
|||
t.string "org_name"
|
||||
t.integer "created_by_id"
|
||||
t.integer "updated_by_id"
|
||||
t.string "auth_info"
|
||||
end
|
||||
|
||||
create_table "countries", force: true do |t|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue