mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 02:09:39 +02:00
6 lines
180 B
Ruby
6 lines
180 B
Ruby
class AddUserStampsToContact < ActiveRecord::Migration
|
|
def change
|
|
add_column :contacts, :created_by_id, :integer
|
|
add_column :contacts, :updated_by_id, :integer
|
|
end
|
|
end
|