このコミットが含まれているのは:
2026-03-04 01:33:33 +09:00
コミット a74696fc43
9個のファイルの変更121行の追加2行の削除
+10
ファイルの表示
@@ -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