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

* Fix lint

* Fix lint

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

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

12 lines
297 B
Ruby

# frozen_string_literal: true
class CreateCustomCsses < ActiveRecord::Migration[7.1]
def change
create_table :custom_csses do |t|
t.belongs_to :user, foreign_key: { on_delete: :cascade }, null: false
t.string :css, null: false, default: ''
t.timestamps
end
end
end