mirror of
https://github.com/internetee/registry.git
synced 2025-08-03 00:12:03 +02:00
Added general user stamping on contact
This commit is contained in:
parent
86dc8321c6
commit
8ce1875484
6 changed files with 33 additions and 1 deletions
6
db/migrate/20140804095654_add_user_stamps_to_contact.rb
Normal file
6
db/migrate/20140804095654_add_user_stamps_to_contact.rb
Normal file
|
@ -0,0 +1,6 @@
|
|||
class AddUserStampsToContact < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :contacts, :created_by_id, :integer
|
||||
add_column :contacts, :updated_by_id, :integer
|
||||
end
|
||||
end
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20140801140249) do
|
||||
ActiveRecord::Schema.define(version: 20140804095654) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -39,6 +39,8 @@ ActiveRecord::Schema.define(version: 20140801140249) do
|
|||
t.string "ident"
|
||||
t.string "ident_type"
|
||||
t.string "org_name"
|
||||
t.integer "created_by_id"
|
||||
t.integer "updated_by_id"
|
||||
end
|
||||
|
||||
create_table "countries", force: true do |t|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue