ニジラー管理(#247) (#275)

#247

#247

Co-authored-by: miteruzo <miteruzo@naver.com>
Reviewed-on: #275
This commit was merged in pull request #275.
This commit is contained in:
2026-03-05 20:35:11 +09:00
parent 7d1a87f452
commit e0e7a22c38
12 changed files with 438 additions and 4 deletions
@@ -0,0 +1,10 @@
class CreateDeerjikists < ActiveRecord::Migration[8.0]
def change
create_table :deerjikists, primary_key: [:platform, :code] do |t|
t.string :platform, null: false, limit: 16
t.string :code, null: false
t.references :tag, null: false
t.timestamps
end
end
end