Ownership::Model Ownership::Controller
class Post < ActiveRecord::Base
include Ownership::Model
....
end
class PostsController < ApplicationController
include Ownership::Controller
....
end
$ rails g migration add_creator_id_and_updater_id_to_posts creator_id:integer updater_id:integer