nas/app/models/custom_css.rb
KMY(雪あすか) 665c632d66
Add: #406 ユーザーのカスタムCSS (#825)
* Add: #406 ユーザーのカスタムCSS

* Fix lint

* Fix lint

* カスタムCSSの保存先を変更

* キャッシュを考慮して別URLに変更
2024-08-29 07:55:01 +09:00

16 lines
380 B
Ruby

# frozen_string_literal: true
#
# == Schema Information
#
# Table name: custom_csses
#
# id :bigint(8) not null, primary key
# user_id :bigint(8) not null
# css :string default(""), not null
# created_at :datetime not null
# updated_at :datetime not null
#
class CustomCss < ApplicationRecord
belongs_to :user
end