24 lines
579 B
Ruby
24 lines
579 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: user_actions
|
|
#
|
|
# id :integer not null, primary key
|
|
# user_id :integer
|
|
# action_type :string(255)
|
|
# action_id :integer
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# ip :string(255)
|
|
# data_bank :text(65535)
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_user_actions_on_action_id (action_id)
|
|
# index_user_actions_on_action_type (action_type)
|
|
# index_user_actions_on_ip (ip)
|
|
# index_user_actions_on_user_id (user_id)
|
|
#
|
|
|
|
class UserAction < ApplicationRecord
|
|
end
|