mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
17 lines
366 B
Ruby
17 lines
366 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: user_groups
|
|
#
|
|
# id :bigint(8) not null, primary key
|
|
# name :string not null
|
|
# createdAt :datetime
|
|
# visibility :string
|
|
# account_id :integer
|
|
# creator_id :integer
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
|
|
class UserGroup < ApplicationRecord
|
|
end
|