mirror of
https://github.com/internetee/registry.git
synced 2025-06-10 14:44:47 +02:00
6 lines
185 B
Ruby
6 lines
185 B
Ruby
class AddUserStampsToContact < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :contacts, :created_by_id, :integer
|
|
add_column :contacts, :updated_by_id, :integer
|
|
end
|
|
end
|