16 lines
398 B
Ruby
16 lines
398 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: accounts
|
|
#
|
|
# id :uuid not null, primary key
|
|
# name :string
|
|
# contact_id :uuid not null
|
|
# subdomain :string not null
|
|
# style :text
|
|
# size :bigint default(10000)
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
class Account < ApplicationRecord
|
|
end
|