Added auth info to contact

This commit is contained in:
Andres Keskküla 2014-08-15 16:09:05 +03:00
parent eaa9b015e2
commit c1f90754d1
7 changed files with 50 additions and 27 deletions

View file

@ -0,0 +1,5 @@
class AddAuthInfoToContact < ActiveRecord::Migration
def change
add_column :contacts, :auth_info, :string
end
end

View file

@ -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|