Update schema.rb
This commit is contained in:
parent
bb79360b6c
commit
e982dec63d
1 changed files with 3 additions and 7 deletions
10
db/schema.rb
10
db/schema.rb
|
|
@ -15,6 +15,7 @@ ActiveRecord::Schema.define(version: 2022_01_28_183534) do
|
|||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "pgcrypto"
|
||||
enable_extension "plpgsql"
|
||||
enable_extension "timescaledb"
|
||||
|
||||
create_table "characters", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
|
||||
t.string "name_en"
|
||||
|
|
@ -28,6 +29,7 @@ ActiveRecord::Schema.define(version: 2022_01_28_183534) do
|
|||
t.integer "race1"
|
||||
t.integer "race2"
|
||||
t.boolean "flb"
|
||||
t.boolean "max_level"
|
||||
t.integer "min_hp"
|
||||
t.integer "max_hp"
|
||||
t.integer "max_hp_flb"
|
||||
|
|
@ -38,9 +40,6 @@ ActiveRecord::Schema.define(version: 2022_01_28_183534) do
|
|||
t.integer "base_ta"
|
||||
t.float "ougi_ratio"
|
||||
t.float "ougi_ratio_flb"
|
||||
t.boolean "ulb"
|
||||
t.integer "max_atk_ulb"
|
||||
t.integer "max_hp_ulb"
|
||||
end
|
||||
|
||||
create_table "grid_characters", force: :cascade do |t|
|
||||
|
|
@ -148,6 +147,7 @@ ActiveRecord::Schema.define(version: 2022_01_28_183534) do
|
|||
t.integer "max_atk"
|
||||
t.integer "max_atk_flb"
|
||||
t.integer "max_atk_ulb"
|
||||
t.boolean "subaura", default: false, null: false
|
||||
t.integer "limit"
|
||||
end
|
||||
|
||||
|
|
@ -194,10 +194,6 @@ ActiveRecord::Schema.define(version: 2022_01_28_183534) do
|
|||
t.integer "ax"
|
||||
end
|
||||
|
||||
create_table "weapons_import", id: false, force: :cascade do |t|
|
||||
t.json "doc"
|
||||
end
|
||||
|
||||
add_foreign_key "oauth_access_grants", "oauth_applications", column: "application_id"
|
||||
add_foreign_key "oauth_access_tokens", "oauth_applications", column: "application_id"
|
||||
end
|
||||
|
|
|
|||
Loading…
Reference in a new issue