Merge pull request #62 from jedmund/fix-blueprint

Remove accessory fields from JobBlueprint
This commit is contained in:
Justin Edmund 2023-01-28 04:20:10 -08:00 committed by GitHub
commit 8fb6fab0d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View file

@ -17,7 +17,7 @@ module Api
]
end
fields :granblue_id, :row, :ml, :order, :accessory, :accessory_type
fields :granblue_id, :row, :ml, :order
end
end
end

View file

@ -16,6 +16,7 @@ ActiveRecord::Schema[7.0].define(version: 2023_01_28_091710) do
enable_extension "pg_trgm"
enable_extension "pgcrypto"
enable_extension "plpgsql"
enable_extension "timescaledb"
create_table "app_updates", primary_key: "updated_at", id: :datetime, force: :cascade do |t|
t.string "update_type", null: false
@ -154,8 +155,6 @@ ActiveRecord::Schema[7.0].define(version: 2023_01_28_091710) do
t.integer "order"
t.uuid "base_job_id"
t.string "granblue_id"
t.boolean "accessory", default: false
t.integer "accessory_type", default: 0
t.index ["base_job_id"], name: "index_jobs_on_base_job_id"
end
@ -222,9 +221,9 @@ ActiveRecord::Schema[7.0].define(version: 2023_01_28_091710) do
t.integer "chain_count"
t.integer "turn_count"
t.uuid "source_party_id"
t.uuid "accessory_id"
t.integer "characters_count"
t.integer "summons_count"
t.uuid "accessory_id"
t.index ["accessory_id"], name: "index_parties_on_accessory_id"
t.index ["job_id"], name: "index_parties_on_job_id"
t.index ["skill0_id"], name: "index_parties_on_skill0_id"