mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 20:00:49 +08:00
20 lines
392 B
Ruby
20 lines
392 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)
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_user_actions_on_ip (ip)
|
|
#
|
|
|
|
class UserAction < ApplicationRecord
|
|
end
|