e0e7a22c38
#247 #247 Co-authored-by: miteruzo <miteruzo@naver.com> Reviewed-on: #275
11 lines
295 B
Ruby
11 lines
295 B
Ruby
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
|