mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-10 14:14:17 +00:00
Merge branch 'master' into poltchageist-form-names
This commit is contained in:
commit
e74795ad90
164 changed files with 3681 additions and 3640 deletions
29
Makefile
29
Makefile
|
@ -1,7 +1,6 @@
|
||||||
veekun_pokedex_repository = ../pokedex
|
veekun_pokedex_repository = ../pokedex
|
||||||
local_config = --settings=config.local
|
local_config = --settings=config.local
|
||||||
docker_config = --settings=config.docker-compose
|
docker_config = --settings=config.docker-compose
|
||||||
HASURA_GRAPHQL_ADMIN_SECRET=pokemon
|
|
||||||
|
|
||||||
.PHONY: help
|
.PHONY: help
|
||||||
.SILENT:
|
.SILENT:
|
||||||
|
@ -101,11 +100,11 @@ sync-to-veekun: pull pull-veekun # Copy data from this repository to ../pokedex
|
||||||
# read-env-file: # Exports ./.env into shell environment variables
|
# read-env-file: # Exports ./.env into shell environment variables
|
||||||
# export `egrep -v '^#' .env | xargs`
|
# export `egrep -v '^#' .env | xargs`
|
||||||
|
|
||||||
hasura-export: # Export Hasura configuration
|
hasura-export: # Export Hasura configuration, be sure to have set HASURA_GRAPHQL_ADMIN_SECRET
|
||||||
hasura md export --project graphql --admin-secret ${HASURA_GRAPHQL_ADMIN_SECRET}
|
hasura md export --project graphql
|
||||||
|
|
||||||
hasura-apply: # Apply local Hasura configuration
|
hasura-apply: # Apply local Hasura configuration, be sure to have set HASURA_GRAPHQL_ADMIN_SECRET
|
||||||
hasura md apply --project graphql --admin-secret ${HASURA_GRAPHQL_ADMIN_SECRET}
|
hasura md apply --project graphql
|
||||||
|
|
||||||
hasura-get-anon-schema: # Dumps GraphQL schema
|
hasura-get-anon-schema: # Dumps GraphQL schema
|
||||||
gq http://localhost:8080/v1/graphql --introspect > graphql/schema.graphql
|
gq http://localhost:8080/v1/graphql --introspect > graphql/schema.graphql
|
||||||
|
@ -128,17 +127,25 @@ k8s-delete: # (k8s) Delete pokeapi namespace
|
||||||
start-graphql-prod:
|
start-graphql-prod:
|
||||||
git pull origin master
|
git pull origin master
|
||||||
git submodule update --init
|
git submodule update --init
|
||||||
docker-compose -f docker-compose.yml -f docker-compose.override.yml -f Resources/compose/docker-compose-prod-graphql.yml up -d
|
docker compose -f docker-compose.yml -f Resources/compose/docker-compose-prod-graphql.yml up -d
|
||||||
|
docker compose stop app
|
||||||
|
|
||||||
|
down-graphql-prod:
|
||||||
|
docker container rm $(docker container ls -aq) -f
|
||||||
|
docker system prune --all --volumes --force
|
||||||
|
sync; echo 3 > /proc/sys/vm/drop_caches
|
||||||
|
|
||||||
update-graphql-data-prod:
|
update-graphql-data-prod:
|
||||||
git pull origin master
|
git pull origin master
|
||||||
git submodule update --init
|
git submodule update --init
|
||||||
docker stop pokeapi_graphql-engine_1
|
docker compose stop graphql-engine
|
||||||
sync; echo 3 > /proc/sys/vm/drop_caches
|
sync; echo 3 > /proc/sys/vm/drop_caches
|
||||||
docker-compose -f docker-compose.yml -f docker-compose.override.yml -f Resources/compose/docker-compose-prod-graphql.yml up -d app
|
docker compose -f docker-compose.yml -f Resources/compose/docker-compose-prod-graphql.yml up -d app
|
||||||
make docker-migrate
|
make docker-migrate
|
||||||
make docker-build-db
|
make docker-build-db
|
||||||
docker stop pokeapi_app_1
|
docker compose stop app
|
||||||
sync; echo 3 > /proc/sys/vm/drop_caches
|
sync; echo 3 > /proc/sys/vm/drop_caches
|
||||||
docker exec pokeapi_web_1 sh -c 'rm -rf /tmp/cache/*'
|
docker compose exec -T web sh -c 'rm -rf /tmp/cache/*'
|
||||||
docker start pokeapi_graphql-engine_1
|
docker compose start graphql-engine
|
||||||
|
sleep 30
|
||||||
|
make hasura-apply
|
||||||
|
|
|
@ -87,7 +87,7 @@ When you start PokéAPI with the above docker-compose setup, an [Hasura Engine](
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
# hasura cli needs to be installed and available in your $PATH: https://hasura.io/docs/latest/graphql/core/hasura-cli/install-hasura-cli.html
|
# hasura cli needs to be installed and available in your $PATH: https://hasura.io/docs/latest/graphql/core/hasura-cli/install-hasura-cli.html
|
||||||
# hasura cli's version has to be v2.0.8
|
# hasura cli's version has to greater than v2.0.8
|
||||||
make hasura-apply
|
make hasura-apply
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
version: '2.4'
|
version: '2.4'
|
||||||
services:
|
services:
|
||||||
cache:
|
|
||||||
image: redis:7.0.7-alpine
|
|
||||||
db:
|
db:
|
||||||
image: postgres:15.1
|
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_PASSWORD: "${POSTGRES_PASSWORD}"
|
POSTGRES_PASSWORD: "${POSTGRES_PASSWORD}"
|
||||||
POSTGRES_USER: "${POSTGRES_USER}"
|
POSTGRES_USER: "${POSTGRES_USER}"
|
||||||
|
@ -14,12 +11,10 @@ services:
|
||||||
restart: "no"
|
restart: "no"
|
||||||
|
|
||||||
web:
|
web:
|
||||||
image: nginx:1.23.3-alpine
|
|
||||||
volumes:
|
volumes:
|
||||||
- graphiql:/public-console:ro
|
- graphiql:/public-console:ro
|
||||||
|
|
||||||
graphql-engine:
|
graphql-engine:
|
||||||
image: hasura/graphql-engine:v2.16.1
|
|
||||||
cpus: 0.7
|
cpus: 0.7
|
||||||
memswap_limit: 3g
|
memswap_limit: 3g
|
||||||
mem_limit: 700m
|
mem_limit: 700m
|
||||||
|
|
|
@ -89,6 +89,7 @@ http {
|
||||||
}
|
}
|
||||||
|
|
||||||
location /graphql/v1beta {
|
location /graphql/v1beta {
|
||||||
|
include /ssl/cache.conf*;
|
||||||
# proxy_cache small;
|
# proxy_cache small;
|
||||||
# proxy_cache_valid 200 10d;
|
# proxy_cache_valid 200 10d;
|
||||||
# proxy_cache_valid any 0;
|
# proxy_cache_valid any 0;
|
||||||
|
|
|
@ -8499,10 +8499,26 @@ move_id,local_language_id,name
|
||||||
874,8,Corsa all'Oro
|
874,8,Corsa all'Oro
|
||||||
874,9,Make It Rain
|
874,9,Make It Rain
|
||||||
874,11,ゴールドラッシュ
|
874,11,ゴールドラッシュ
|
||||||
875,8,Botta
|
875,1,サイコブレイド
|
||||||
|
875,3,사이코블레이드
|
||||||
|
875,4,精神劍
|
||||||
|
875,5,Lame Psychique
|
||||||
|
875,6,Psychoschneide
|
||||||
|
875,7,Psicohojas
|
||||||
|
875,8,Psicolama
|
||||||
875,9,Psyblade
|
875,9,Psyblade
|
||||||
876,8,Botta
|
875,11,サイコブレイド
|
||||||
|
875,12,精神剑
|
||||||
|
876,1,ハイドロスチーム
|
||||||
|
876,3,하이드로스팀
|
||||||
|
876,4,水蒸氣
|
||||||
|
876,5,Hydrovapeur
|
||||||
|
876,6,Hydrodampf
|
||||||
|
876,7,Hidrovapor
|
||||||
|
876,8,Idrovapore
|
||||||
876,9,Hydro Steam
|
876,9,Hydro Steam
|
||||||
|
876,11,ハイドロスチーム
|
||||||
|
876,12,水蒸气
|
||||||
877,1,カタストロフィ
|
877,1,カタストロフィ
|
||||||
877,4,大灾难
|
877,4,大灾难
|
||||||
877,8,Catastrofe
|
877,8,Catastrofe
|
||||||
|
|
|
|
@ -1,13 +1,13 @@
|
||||||
version: '2.4'
|
version: '2.4'
|
||||||
services:
|
services:
|
||||||
cache:
|
cache:
|
||||||
image: redis:7.0.7-alpine
|
image: redis:7.2.3-alpine
|
||||||
volumes:
|
volumes:
|
||||||
- redis_data:/data
|
- redis_data:/data
|
||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
db:
|
db:
|
||||||
image: postgres:15.1
|
image: postgres:16.1
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-pokemon}
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-pokemon}
|
||||||
POSTGRES_USER: ${POSTGRES_USER:-ash}
|
POSTGRES_USER: ${POSTGRES_USER:-ash}
|
||||||
|
@ -33,7 +33,7 @@ services:
|
||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
web:
|
web:
|
||||||
image: nginx:1.23.3-alpine
|
image: nginx:1.25.3-alpine
|
||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- "80:80"
|
||||||
- "443:443"
|
- "443:443"
|
||||||
|
@ -44,7 +44,7 @@ services:
|
||||||
- ./Resources/nginx/ssl:/ssl:ro
|
- ./Resources/nginx/ssl:/ssl:ro
|
||||||
- graphql_cache:/tmp/cache
|
- graphql_cache:/tmp/cache
|
||||||
graphql-engine:
|
graphql-engine:
|
||||||
image: hasura/graphql-engine:v2.16.1
|
image: hasura/graphql-engine:v2.36.1-ce
|
||||||
ports:
|
ports:
|
||||||
- "8080:8080"
|
- "8080:8080"
|
||||||
depends_on:
|
depends_on:
|
||||||
|
|
1
graphql/metadata/api_limits.yaml
Normal file
1
graphql/metadata/api_limits.yaml
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{}
|
1
graphql/metadata/backend_configs.yaml
Normal file
1
graphql/metadata/backend_configs.yaml
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{}
|
|
@ -2,56 +2,56 @@ table:
|
||||||
name: pokemon_v2_ability
|
name: pokemon_v2_ability
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_generation
|
- name: pokemon_v2_generation
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: generation_id
|
foreign_key_constraint_on: generation_id
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_abilitychanges
|
- name: pokemon_v2_abilitychanges
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: ability_id
|
column: ability_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_abilitychange
|
name: pokemon_v2_abilitychange
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_abilityeffecttexts
|
- name: pokemon_v2_abilityeffecttexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: ability_id
|
column: ability_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_abilityeffecttext
|
name: pokemon_v2_abilityeffecttext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_abilityflavortexts
|
- name: pokemon_v2_abilityflavortexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: ability_id
|
column: ability_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_abilityflavortext
|
name: pokemon_v2_abilityflavortext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_abilitynames
|
- name: pokemon_v2_abilitynames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: ability_id
|
column: ability_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_abilityname
|
name: pokemon_v2_abilityname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemonabilities
|
- name: pokemon_v2_pokemonabilities
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: ability_id
|
column: ability_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonability
|
name: pokemon_v2_pokemonability
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemonabilitypasts
|
- name: pokemon_v2_pokemonabilitypasts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: ability_id
|
column: ability_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonabilitypast
|
name: pokemon_v2_pokemonabilitypast
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,24 +2,24 @@ table:
|
||||||
name: pokemon_v2_abilitychange
|
name: pokemon_v2_abilitychange
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_ability
|
- name: pokemon_v2_ability
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: ability_id
|
foreign_key_constraint_on: ability_id
|
||||||
- name: pokemon_v2_versiongroup
|
- name: pokemon_v2_versiongroup
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: version_group_id
|
foreign_key_constraint_on: version_group_id
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_abilitychangeeffecttexts
|
- name: pokemon_v2_abilitychangeeffecttexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: ability_change_id
|
column: ability_change_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_abilitychangeeffecttext
|
name: pokemon_v2_abilitychangeeffecttext
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_abilitychangeeffecttext
|
name: pokemon_v2_abilitychangeeffecttext
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_abilitychange
|
- name: pokemon_v2_abilitychange
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: ability_change_id
|
foreign_key_constraint_on: ability_change_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_abilityeffecttext
|
name: pokemon_v2_abilityeffecttext
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_ability
|
- name: pokemon_v2_ability
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: ability_id
|
foreign_key_constraint_on: ability_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,19 +2,19 @@ table:
|
||||||
name: pokemon_v2_abilityflavortext
|
name: pokemon_v2_abilityflavortext
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_ability
|
- name: pokemon_v2_ability
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: ability_id
|
foreign_key_constraint_on: ability_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
- name: pokemon_v2_versiongroup
|
- name: pokemon_v2_versiongroup
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: version_group_id
|
foreign_key_constraint_on: version_group_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_abilityname
|
name: pokemon_v2_abilityname
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_ability
|
- name: pokemon_v2_ability
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: ability_id
|
foreign_key_constraint_on: ability_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,27 +2,27 @@ table:
|
||||||
name: pokemon_v2_berry
|
name: pokemon_v2_berry
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_berryfirmness
|
- name: pokemon_v2_berryfirmness
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: berry_firmness_id
|
foreign_key_constraint_on: berry_firmness_id
|
||||||
- name: pokemon_v2_item
|
- name: pokemon_v2_item
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: item_id
|
foreign_key_constraint_on: item_id
|
||||||
- name: pokemon_v2_type
|
- name: pokemon_v2_type
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: natural_gift_type_id
|
foreign_key_constraint_on: natural_gift_type_id
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_berryflavormaps
|
- name: pokemon_v2_berryflavormaps
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: berry_id
|
column: berry_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_berryflavormap
|
name: pokemon_v2_berryflavormap
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,24 +2,24 @@ table:
|
||||||
name: pokemon_v2_berryfirmness
|
name: pokemon_v2_berryfirmness
|
||||||
schema: public
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_berries
|
- name: pokemon_v2_berries
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: berry_firmness_id
|
column: berry_firmness_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_berry
|
name: pokemon_v2_berry
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_berryfirmnessnames
|
- name: pokemon_v2_berryfirmnessnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: berry_firmness_id
|
column: berry_firmness_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_berryfirmnessname
|
name: pokemon_v2_berryfirmnessname
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_berryfirmnessname
|
name: pokemon_v2_berryfirmnessname
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_berryfirmness
|
- name: pokemon_v2_berryfirmness
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: berry_firmness_id
|
foreign_key_constraint_on: berry_firmness_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,42 +2,42 @@ table:
|
||||||
name: pokemon_v2_berryflavor
|
name: pokemon_v2_berryflavor
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_contesttype
|
- name: pokemon_v2_contesttype
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: contest_type_id
|
foreign_key_constraint_on: contest_type_id
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemonV2NaturesByLikesFlavorId
|
- name: pokemonV2NaturesByLikesFlavorId
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: likes_flavor_id
|
column: likes_flavor_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_nature
|
name: pokemon_v2_nature
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_berryflavormaps
|
- name: pokemon_v2_berryflavormaps
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: berry_flavor_id
|
column: berry_flavor_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_berryflavormap
|
name: pokemon_v2_berryflavormap
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_berryflavornames
|
- name: pokemon_v2_berryflavornames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: berry_flavor_id
|
column: berry_flavor_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_berryflavorname
|
name: pokemon_v2_berryflavorname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_natures
|
- name: pokemon_v2_natures
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: hates_flavor_id
|
column: hates_flavor_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_nature
|
name: pokemon_v2_nature
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_berryflavormap
|
name: pokemon_v2_berryflavormap
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_berry
|
- name: pokemon_v2_berry
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: berry_id
|
foreign_key_constraint_on: berry_id
|
||||||
- name: pokemon_v2_berryflavor
|
- name: pokemon_v2_berryflavor
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: berry_flavor_id
|
foreign_key_constraint_on: berry_flavor_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_berryflavorname
|
name: pokemon_v2_berryflavorname
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_berryflavor
|
- name: pokemon_v2_berryflavor
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: berry_flavor_id
|
foreign_key_constraint_on: berry_flavor_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,21 +2,21 @@ table:
|
||||||
name: pokemon_v2_characteristic
|
name: pokemon_v2_characteristic
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_stat
|
- name: pokemon_v2_stat
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: stat_id
|
foreign_key_constraint_on: stat_id
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_characteristicdescriptions
|
- name: pokemon_v2_characteristicdescriptions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: characteristic_id
|
column: characteristic_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_characteristicdescription
|
name: pokemon_v2_characteristicdescription
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_characteristicdescription
|
name: pokemon_v2_characteristicdescription
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_characteristic
|
- name: pokemon_v2_characteristic
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: characteristic_id
|
foreign_key_constraint_on: characteristic_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_contestcombo
|
name: pokemon_v2_contestcombo
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemonV2MoveBySecondMoveId
|
- name: pokemonV2MoveBySecondMoveId
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: second_move_id
|
foreign_key_constraint_on: second_move_id
|
||||||
- name: pokemon_v2_move
|
- name: pokemon_v2_move
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: first_move_id
|
foreign_key_constraint_on: first_move_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,31 +2,31 @@ table:
|
||||||
name: pokemon_v2_contesteffect
|
name: pokemon_v2_contesteffect
|
||||||
schema: public
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_contesteffecteffecttexts
|
- name: pokemon_v2_contesteffecteffecttexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: contest_effect_id
|
column: contest_effect_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_contesteffecteffecttext
|
name: pokemon_v2_contesteffecteffecttext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_contesteffectflavortexts
|
- name: pokemon_v2_contesteffectflavortexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: contest_effect_id
|
column: contest_effect_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_contesteffectflavortext
|
name: pokemon_v2_contesteffectflavortext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_moves
|
- name: pokemon_v2_moves
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: contest_effect_id
|
column: contest_effect_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_move
|
name: pokemon_v2_move
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_contesteffecteffecttext
|
name: pokemon_v2_contesteffecteffecttext
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_contesteffect
|
- name: pokemon_v2_contesteffect
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: contest_effect_id
|
foreign_key_constraint_on: contest_effect_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_contesteffectflavortext
|
name: pokemon_v2_contesteffectflavortext
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_contesteffect
|
- name: pokemon_v2_contesteffect
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: contest_effect_id
|
foreign_key_constraint_on: contest_effect_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -1,32 +1,40 @@
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_contesttype
|
name: pokemon_v2_contesttype
|
||||||
schema: public
|
schema: public
|
||||||
|
object_relationships:
|
||||||
|
- name: pokemon_v2_berryflavor
|
||||||
|
using:
|
||||||
|
foreign_key_constraint_on:
|
||||||
|
column: contest_type_id
|
||||||
|
table:
|
||||||
|
name: pokemon_v2_berryflavor
|
||||||
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_berryflavors
|
- name: pokemon_v2_berryflavors
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: contest_type_id
|
column: contest_type_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_berryflavor
|
name: pokemon_v2_berryflavor
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_contesttypenames
|
- name: pokemon_v2_contesttypenames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: contest_type_id
|
column: contest_type_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_contesttypename
|
name: pokemon_v2_contesttypename
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_moves
|
- name: pokemon_v2_moves
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: contest_type_id
|
column: contest_type_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_move
|
name: pokemon_v2_move
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_contesttypename
|
name: pokemon_v2_contesttypename
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_contesttype
|
- name: pokemon_v2_contesttype
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: contest_type_id
|
foreign_key_constraint_on: contest_type_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,24 +2,24 @@ table:
|
||||||
name: pokemon_v2_egggroup
|
name: pokemon_v2_egggroup
|
||||||
schema: public
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_egggroupnames
|
- name: pokemon_v2_egggroupnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: egg_group_id
|
column: egg_group_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_egggroupname
|
name: pokemon_v2_egggroupname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemonegggroups
|
- name: pokemon_v2_pokemonegggroups
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: egg_group_id
|
column: egg_group_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonegggroup
|
name: pokemon_v2_pokemonegggroup
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_egggroupname
|
name: pokemon_v2_egggroupname
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_egggroup
|
- name: pokemon_v2_egggroup
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: egg_group_id
|
foreign_key_constraint_on: egg_group_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,30 +2,30 @@ table:
|
||||||
name: pokemon_v2_encounter
|
name: pokemon_v2_encounter
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_encounterslot
|
- name: pokemon_v2_encounterslot
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: encounter_slot_id
|
foreign_key_constraint_on: encounter_slot_id
|
||||||
- name: pokemon_v2_locationarea
|
- name: pokemon_v2_locationarea
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: location_area_id
|
foreign_key_constraint_on: location_area_id
|
||||||
- name: pokemon_v2_pokemon
|
- name: pokemon_v2_pokemon
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: pokemon_id
|
foreign_key_constraint_on: pokemon_id
|
||||||
- name: pokemon_v2_version
|
- name: pokemon_v2_version
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: version_id
|
foreign_key_constraint_on: version_id
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_encounterconditionvaluemaps
|
- name: pokemon_v2_encounterconditionvaluemaps
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: encounter_id
|
column: encounter_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_encounterconditionvaluemap
|
name: pokemon_v2_encounterconditionvaluemap
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,24 +2,24 @@ table:
|
||||||
name: pokemon_v2_encountercondition
|
name: pokemon_v2_encountercondition
|
||||||
schema: public
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_encounterconditionnames
|
- name: pokemon_v2_encounterconditionnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: encounter_condition_id
|
column: encounter_condition_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_encounterconditionname
|
name: pokemon_v2_encounterconditionname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_encounterconditionvalues
|
- name: pokemon_v2_encounterconditionvalues
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: encounter_condition_id
|
column: encounter_condition_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_encounterconditionvalue
|
name: pokemon_v2_encounterconditionvalue
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_encounterconditionname
|
name: pokemon_v2_encounterconditionname
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_encountercondition
|
- name: pokemon_v2_encountercondition
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: encounter_condition_id
|
foreign_key_constraint_on: encounter_condition_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,28 +2,28 @@ table:
|
||||||
name: pokemon_v2_encounterconditionvalue
|
name: pokemon_v2_encounterconditionvalue
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_encountercondition
|
- name: pokemon_v2_encountercondition
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: encounter_condition_id
|
foreign_key_constraint_on: encounter_condition_id
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_encounterconditionvaluemaps
|
- name: pokemon_v2_encounterconditionvaluemaps
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: encounter_condition_value_id
|
column: encounter_condition_value_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_encounterconditionvaluemap
|
name: pokemon_v2_encounterconditionvaluemap
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_encounterconditionvaluenames
|
- name: pokemon_v2_encounterconditionvaluenames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: encounter_condition_value_id
|
column: encounter_condition_value_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_encounterconditionvaluename
|
name: pokemon_v2_encounterconditionvaluename
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_encounterconditionvaluemap
|
name: pokemon_v2_encounterconditionvaluemap
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_encounter
|
- name: pokemon_v2_encounter
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: encounter_id
|
foreign_key_constraint_on: encounter_id
|
||||||
- name: pokemon_v2_encounterconditionvalue
|
- name: pokemon_v2_encounterconditionvalue
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: encounter_condition_value_id
|
foreign_key_constraint_on: encounter_condition_value_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_encounterconditionvaluename
|
name: pokemon_v2_encounterconditionvaluename
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_encounterconditionvalue
|
- name: pokemon_v2_encounterconditionvalue
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: encounter_condition_value_id
|
foreign_key_constraint_on: encounter_condition_value_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,31 +2,31 @@ table:
|
||||||
name: pokemon_v2_encountermethod
|
name: pokemon_v2_encountermethod
|
||||||
schema: public
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_encountermethodnames
|
- name: pokemon_v2_encountermethodnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: encounter_method_id
|
column: encounter_method_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_encountermethodname
|
name: pokemon_v2_encountermethodname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_encounterslots
|
- name: pokemon_v2_encounterslots
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: encounter_method_id
|
column: encounter_method_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_encounterslot
|
name: pokemon_v2_encounterslot
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_locationareaencounterrates
|
- name: pokemon_v2_locationareaencounterrates
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: encounter_method_id
|
column: encounter_method_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_locationareaencounterrate
|
name: pokemon_v2_locationareaencounterrate
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_encountermethodname
|
name: pokemon_v2_encountermethodname
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_encountermethod
|
- name: pokemon_v2_encountermethod
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: encounter_method_id
|
foreign_key_constraint_on: encounter_method_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,24 +2,24 @@ table:
|
||||||
name: pokemon_v2_encounterslot
|
name: pokemon_v2_encounterslot
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_encountermethod
|
- name: pokemon_v2_encountermethod
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: encounter_method_id
|
foreign_key_constraint_on: encounter_method_id
|
||||||
- name: pokemon_v2_versiongroup
|
- name: pokemon_v2_versiongroup
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: version_group_id
|
foreign_key_constraint_on: version_group_id
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_encounters
|
- name: pokemon_v2_encounters
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: encounter_slot_id
|
column: encounter_slot_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_encounter
|
name: pokemon_v2_encounter
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,21 +2,21 @@ table:
|
||||||
name: pokemon_v2_evolutionchain
|
name: pokemon_v2_evolutionchain
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_item
|
- name: pokemon_v2_item
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: baby_trigger_item_id
|
foreign_key_constraint_on: baby_trigger_item_id
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_pokemonspecies
|
- name: pokemon_v2_pokemonspecies
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: evolution_chain_id
|
column: evolution_chain_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonspecies
|
name: pokemon_v2_pokemonspecies
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,24 +2,24 @@ table:
|
||||||
name: pokemon_v2_evolutiontrigger
|
name: pokemon_v2_evolutiontrigger
|
||||||
schema: public
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_evolutiontriggernames
|
- name: pokemon_v2_evolutiontriggernames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: evolution_trigger_id
|
column: evolution_trigger_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_evolutiontriggername
|
name: pokemon_v2_evolutiontriggername
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemonevolutions
|
- name: pokemon_v2_pokemonevolutions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: evolution_trigger_id
|
column: evolution_trigger_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonevolution
|
name: pokemon_v2_pokemonevolution
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_evolutiontriggername
|
name: pokemon_v2_evolutiontriggername
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_evolutiontrigger
|
- name: pokemon_v2_evolutiontrigger
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: evolution_trigger_id
|
foreign_key_constraint_on: evolution_trigger_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,13 +2,13 @@ table:
|
||||||
name: pokemon_v2_experience
|
name: pokemon_v2_experience
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_growthrate
|
- name: pokemon_v2_growthrate
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: growth_rate_id
|
foreign_key_constraint_on: growth_rate_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,17 +2,17 @@ table:
|
||||||
name: pokemon_v2_gender
|
name: pokemon_v2_gender
|
||||||
schema: public
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_pokemonevolutions
|
- name: pokemon_v2_pokemonevolutions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: gender_id
|
column: gender_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonevolution
|
name: pokemon_v2_pokemonevolution
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,105 +2,105 @@ table:
|
||||||
name: pokemon_v2_generation
|
name: pokemon_v2_generation
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_region
|
- name: pokemon_v2_region
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: region_id
|
foreign_key_constraint_on: region_id
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_abilities
|
- name: pokemon_v2_abilities
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: generation_id
|
column: generation_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_ability
|
name: pokemon_v2_ability
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_generationnames
|
- name: pokemon_v2_generationnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: generation_id
|
column: generation_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_generationname
|
name: pokemon_v2_generationname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_itemgameindices
|
- name: pokemon_v2_itemgameindices
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: generation_id
|
column: generation_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itemgameindex
|
name: pokemon_v2_itemgameindex
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_locationgameindices
|
- name: pokemon_v2_locationgameindices
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: generation_id
|
column: generation_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_locationgameindex
|
name: pokemon_v2_locationgameindex
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_moves
|
- name: pokemon_v2_moves
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: generation_id
|
column: generation_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_move
|
name: pokemon_v2_move
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemonabilitypasts
|
- name: pokemon_v2_pokemonabilitypasts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: generation_id
|
column: generation_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonabilitypast
|
name: pokemon_v2_pokemonabilitypast
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemonformgenerations
|
- name: pokemon_v2_pokemonformgenerations
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: generation_id
|
column: generation_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonformgeneration
|
name: pokemon_v2_pokemonformgeneration
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemonspecies
|
- name: pokemon_v2_pokemonspecies
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: generation_id
|
column: generation_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonspecies
|
name: pokemon_v2_pokemonspecies
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemontypepasts
|
- name: pokemon_v2_pokemontypepasts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: generation_id
|
column: generation_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemontypepast
|
name: pokemon_v2_pokemontypepast
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_typeefficacypasts
|
- name: pokemon_v2_typeefficacypasts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: generation_id
|
column: generation_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_typeefficacypast
|
name: pokemon_v2_typeefficacypast
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_typegameindices
|
- name: pokemon_v2_typegameindices
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: generation_id
|
column: generation_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_typegameindex
|
name: pokemon_v2_typegameindex
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_types
|
- name: pokemon_v2_types
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: generation_id
|
column: generation_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_type
|
name: pokemon_v2_type
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_versiongroups
|
- name: pokemon_v2_versiongroups
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: generation_id
|
column: generation_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_versiongroup
|
name: pokemon_v2_versiongroup
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_generationname
|
name: pokemon_v2_generationname
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_generation
|
- name: pokemon_v2_generation
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: generation_id
|
foreign_key_constraint_on: generation_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,38 +2,38 @@ table:
|
||||||
name: pokemon_v2_growthrate
|
name: pokemon_v2_growthrate
|
||||||
schema: public
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_experiences
|
- name: pokemon_v2_experiences
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: growth_rate_id
|
column: growth_rate_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_experience
|
name: pokemon_v2_experience
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_growthratedescriptions
|
- name: pokemon_v2_growthratedescriptions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: growth_rate_id
|
column: growth_rate_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_growthratedescription
|
name: pokemon_v2_growthratedescription
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_machines
|
- name: pokemon_v2_machines
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: growth_rate_id
|
column: growth_rate_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_machine
|
name: pokemon_v2_machine
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemonspecies
|
- name: pokemon_v2_pokemonspecies
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: growth_rate_id
|
column: growth_rate_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonspecies
|
name: pokemon_v2_pokemonspecies
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_growthratedescription
|
name: pokemon_v2_growthratedescription
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_growthrate
|
- name: pokemon_v2_growthrate
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: growth_rate_id
|
foreign_key_constraint_on: growth_rate_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,101 +2,101 @@ table:
|
||||||
name: pokemon_v2_item
|
name: pokemon_v2_item
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_itemcategory
|
- name: pokemon_v2_itemcategory
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: item_category_id
|
foreign_key_constraint_on: item_category_id
|
||||||
- name: pokemon_v2_itemflingeffect
|
- name: pokemon_v2_itemflingeffect
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: item_fling_effect_id
|
foreign_key_constraint_on: item_fling_effect_id
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemonV2PokemonevolutionsByHeldItemId
|
- name: pokemonV2PokemonevolutionsByHeldItemId
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: held_item_id
|
column: held_item_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonevolution
|
name: pokemon_v2_pokemonevolution
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_berries
|
- name: pokemon_v2_berries
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: item_id
|
column: item_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_berry
|
name: pokemon_v2_berry
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_evolutionchains
|
- name: pokemon_v2_evolutionchains
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: baby_trigger_item_id
|
column: baby_trigger_item_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_evolutionchain
|
name: pokemon_v2_evolutionchain
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_itemattributemaps
|
- name: pokemon_v2_itemattributemaps
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: item_id
|
column: item_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itemattributemap
|
name: pokemon_v2_itemattributemap
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_itemeffecttexts
|
- name: pokemon_v2_itemeffecttexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: item_id
|
column: item_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itemeffecttext
|
name: pokemon_v2_itemeffecttext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_itemflavortexts
|
- name: pokemon_v2_itemflavortexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: item_id
|
column: item_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itemflavortext
|
name: pokemon_v2_itemflavortext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_itemgameindices
|
- name: pokemon_v2_itemgameindices
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: item_id
|
column: item_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itemgameindex
|
name: pokemon_v2_itemgameindex
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_itemnames
|
- name: pokemon_v2_itemnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: item_id
|
column: item_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itemname
|
name: pokemon_v2_itemname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_itemsprites
|
- name: pokemon_v2_itemsprites
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: item_id
|
column: item_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itemsprites
|
name: pokemon_v2_itemsprites
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_machines
|
- name: pokemon_v2_machines
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: item_id
|
column: item_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_machine
|
name: pokemon_v2_machine
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemonevolutions
|
- name: pokemon_v2_pokemonevolutions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: evolution_item_id
|
column: evolution_item_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonevolution
|
name: pokemon_v2_pokemonevolution
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemonitems
|
- name: pokemon_v2_pokemonitems
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: item_id
|
column: item_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonitem
|
name: pokemon_v2_pokemonitem
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,31 +2,31 @@ table:
|
||||||
name: pokemon_v2_itemattribute
|
name: pokemon_v2_itemattribute
|
||||||
schema: public
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_itemattributedescriptions
|
- name: pokemon_v2_itemattributedescriptions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: item_attribute_id
|
column: item_attribute_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itemattributedescription
|
name: pokemon_v2_itemattributedescription
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_itemattributemaps
|
- name: pokemon_v2_itemattributemaps
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: item_attribute_id
|
column: item_attribute_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itemattributemap
|
name: pokemon_v2_itemattributemap
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_itemattributenames
|
- name: pokemon_v2_itemattributenames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: item_attribute_id
|
column: item_attribute_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itemattributename
|
name: pokemon_v2_itemattributename
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_itemattributedescription
|
name: pokemon_v2_itemattributedescription
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_itemattribute
|
- name: pokemon_v2_itemattribute
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: item_attribute_id
|
foreign_key_constraint_on: item_attribute_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_itemattributemap
|
name: pokemon_v2_itemattributemap
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_item
|
- name: pokemon_v2_item
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: item_id
|
foreign_key_constraint_on: item_id
|
||||||
- name: pokemon_v2_itemattribute
|
- name: pokemon_v2_itemattribute
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: item_attribute_id
|
foreign_key_constraint_on: item_attribute_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_itemattributename
|
name: pokemon_v2_itemattributename
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_itemattribute
|
- name: pokemon_v2_itemattribute
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: item_attribute_id
|
foreign_key_constraint_on: item_attribute_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,28 +2,28 @@ table:
|
||||||
name: pokemon_v2_itemcategory
|
name: pokemon_v2_itemcategory
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_itempocket
|
- name: pokemon_v2_itempocket
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: item_pocket_id
|
foreign_key_constraint_on: item_pocket_id
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_itemcategorynames
|
- name: pokemon_v2_itemcategorynames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: item_category_id
|
column: item_category_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itemcategoryname
|
name: pokemon_v2_itemcategoryname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_items
|
- name: pokemon_v2_items
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: item_category_id
|
column: item_category_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_item
|
name: pokemon_v2_item
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_itemcategoryname
|
name: pokemon_v2_itemcategoryname
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_itemcategory
|
- name: pokemon_v2_itemcategory
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: item_category_id
|
foreign_key_constraint_on: item_category_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_itemeffecttext
|
name: pokemon_v2_itemeffecttext
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_item
|
- name: pokemon_v2_item
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: item_id
|
foreign_key_constraint_on: item_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,19 +2,19 @@ table:
|
||||||
name: pokemon_v2_itemflavortext
|
name: pokemon_v2_itemflavortext
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_item
|
- name: pokemon_v2_item
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: item_id
|
foreign_key_constraint_on: item_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
- name: pokemon_v2_versiongroup
|
- name: pokemon_v2_versiongroup
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: version_group_id
|
foreign_key_constraint_on: version_group_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,24 +2,24 @@ table:
|
||||||
name: pokemon_v2_itemflingeffect
|
name: pokemon_v2_itemflingeffect
|
||||||
schema: public
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_itemflingeffecteffecttexts
|
- name: pokemon_v2_itemflingeffecteffecttexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: item_fling_effect_id
|
column: item_fling_effect_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itemflingeffecteffecttext
|
name: pokemon_v2_itemflingeffecteffecttext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_items
|
- name: pokemon_v2_items
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: item_fling_effect_id
|
column: item_fling_effect_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_item
|
name: pokemon_v2_item
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_itemflingeffecteffecttext
|
name: pokemon_v2_itemflingeffecteffecttext
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_itemflingeffect
|
- name: pokemon_v2_itemflingeffect
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: item_fling_effect_id
|
foreign_key_constraint_on: item_fling_effect_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_itemgameindex
|
name: pokemon_v2_itemgameindex
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_generation
|
- name: pokemon_v2_generation
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: generation_id
|
foreign_key_constraint_on: generation_id
|
||||||
- name: pokemon_v2_item
|
- name: pokemon_v2_item
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: item_id
|
foreign_key_constraint_on: item_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_itemname
|
name: pokemon_v2_itemname
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_item
|
- name: pokemon_v2_item
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: item_id
|
foreign_key_constraint_on: item_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,24 +2,24 @@ table:
|
||||||
name: pokemon_v2_itempocket
|
name: pokemon_v2_itempocket
|
||||||
schema: public
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_itemcategories
|
- name: pokemon_v2_itemcategories
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: item_pocket_id
|
column: item_pocket_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itemcategory
|
name: pokemon_v2_itemcategory
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_itempocketnames
|
- name: pokemon_v2_itempocketnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: item_pocket_id
|
column: item_pocket_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itempocketname
|
name: pokemon_v2_itempocketname
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_itempocketname
|
name: pokemon_v2_itempocketname
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_itempocket
|
- name: pokemon_v2_itempocket
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: item_pocket_id
|
foreign_key_constraint_on: item_pocket_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,13 +2,13 @@ table:
|
||||||
name: pokemon_v2_itemsprites
|
name: pokemon_v2_itemsprites
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_item
|
- name: pokemon_v2_item
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: item_id
|
foreign_key_constraint_on: item_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,437 +2,437 @@ table:
|
||||||
name: pokemon_v2_language
|
name: pokemon_v2_language
|
||||||
schema: public
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemonV2LanguagenamesByLocalLanguageId
|
- name: pokemonV2LanguagenamesByLocalLanguageId
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: local_language_id
|
column: local_language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_languagename
|
name: pokemon_v2_languagename
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_abilitychangeeffecttexts
|
- name: pokemon_v2_abilitychangeeffecttexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_abilitychangeeffecttext
|
name: pokemon_v2_abilitychangeeffecttext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_abilityeffecttexts
|
- name: pokemon_v2_abilityeffecttexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_abilityeffecttext
|
name: pokemon_v2_abilityeffecttext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_abilityflavortexts
|
- name: pokemon_v2_abilityflavortexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_abilityflavortext
|
name: pokemon_v2_abilityflavortext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_abilitynames
|
- name: pokemon_v2_abilitynames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_abilityname
|
name: pokemon_v2_abilityname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_berryfirmnessnames
|
- name: pokemon_v2_berryfirmnessnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_berryfirmnessname
|
name: pokemon_v2_berryfirmnessname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_berryflavornames
|
- name: pokemon_v2_berryflavornames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_berryflavorname
|
name: pokemon_v2_berryflavorname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_characteristicdescriptions
|
- name: pokemon_v2_characteristicdescriptions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_characteristicdescription
|
name: pokemon_v2_characteristicdescription
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_contesteffecteffecttexts
|
- name: pokemon_v2_contesteffecteffecttexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_contesteffecteffecttext
|
name: pokemon_v2_contesteffecteffecttext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_contesteffectflavortexts
|
- name: pokemon_v2_contesteffectflavortexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_contesteffectflavortext
|
name: pokemon_v2_contesteffectflavortext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_contesttypenames
|
- name: pokemon_v2_contesttypenames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_contesttypename
|
name: pokemon_v2_contesttypename
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_egggroupnames
|
- name: pokemon_v2_egggroupnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_egggroupname
|
name: pokemon_v2_egggroupname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_encounterconditionnames
|
- name: pokemon_v2_encounterconditionnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_encounterconditionname
|
name: pokemon_v2_encounterconditionname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_encounterconditionvaluenames
|
- name: pokemon_v2_encounterconditionvaluenames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_encounterconditionvaluename
|
name: pokemon_v2_encounterconditionvaluename
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_encountermethodnames
|
- name: pokemon_v2_encountermethodnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_encountermethodname
|
name: pokemon_v2_encountermethodname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_evolutiontriggernames
|
- name: pokemon_v2_evolutiontriggernames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_evolutiontriggername
|
name: pokemon_v2_evolutiontriggername
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_generationnames
|
- name: pokemon_v2_generationnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_generationname
|
name: pokemon_v2_generationname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_growthratedescriptions
|
- name: pokemon_v2_growthratedescriptions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_growthratedescription
|
name: pokemon_v2_growthratedescription
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_itemattributedescriptions
|
- name: pokemon_v2_itemattributedescriptions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itemattributedescription
|
name: pokemon_v2_itemattributedescription
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_itemattributenames
|
- name: pokemon_v2_itemattributenames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itemattributename
|
name: pokemon_v2_itemattributename
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_itemcategorynames
|
- name: pokemon_v2_itemcategorynames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itemcategoryname
|
name: pokemon_v2_itemcategoryname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_itemeffecttexts
|
- name: pokemon_v2_itemeffecttexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itemeffecttext
|
name: pokemon_v2_itemeffecttext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_itemflavortexts
|
- name: pokemon_v2_itemflavortexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itemflavortext
|
name: pokemon_v2_itemflavortext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_itemflingeffecteffecttexts
|
- name: pokemon_v2_itemflingeffecteffecttexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itemflingeffecteffecttext
|
name: pokemon_v2_itemflingeffecteffecttext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_itemnames
|
- name: pokemon_v2_itemnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itemname
|
name: pokemon_v2_itemname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_itempocketnames
|
- name: pokemon_v2_itempocketnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_itempocketname
|
name: pokemon_v2_itempocketname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_languagenames
|
- name: pokemon_v2_languagenames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_languagename
|
name: pokemon_v2_languagename
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_locationareanames
|
- name: pokemon_v2_locationareanames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_locationareaname
|
name: pokemon_v2_locationareaname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_locationnames
|
- name: pokemon_v2_locationnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_locationname
|
name: pokemon_v2_locationname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_moveattributedescriptions
|
- name: pokemon_v2_moveattributedescriptions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_moveattributedescription
|
name: pokemon_v2_moveattributedescription
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_moveattributenames
|
- name: pokemon_v2_moveattributenames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_moveattributename
|
name: pokemon_v2_moveattributename
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movebattlestylenames
|
- name: pokemon_v2_movebattlestylenames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movebattlestylename
|
name: pokemon_v2_movebattlestylename
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movedamageclassdescriptions
|
- name: pokemon_v2_movedamageclassdescriptions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movedamageclassdescription
|
name: pokemon_v2_movedamageclassdescription
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movedamageclassnames
|
- name: pokemon_v2_movedamageclassnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movedamageclassname
|
name: pokemon_v2_movedamageclassname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_moveeffectchangeeffecttexts
|
- name: pokemon_v2_moveeffectchangeeffecttexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_moveeffectchangeeffecttext
|
name: pokemon_v2_moveeffectchangeeffecttext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_moveeffecteffecttexts
|
- name: pokemon_v2_moveeffecteffecttexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_moveeffecteffecttext
|
name: pokemon_v2_moveeffecteffecttext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_moveflavortexts
|
- name: pokemon_v2_moveflavortexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_moveflavortext
|
name: pokemon_v2_moveflavortext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movelearnmethoddescriptions
|
- name: pokemon_v2_movelearnmethoddescriptions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movelearnmethoddescription
|
name: pokemon_v2_movelearnmethoddescription
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movelearnmethodnames
|
- name: pokemon_v2_movelearnmethodnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movelearnmethodname
|
name: pokemon_v2_movelearnmethodname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movemetaailmentnames
|
- name: pokemon_v2_movemetaailmentnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movemetaailmentname
|
name: pokemon_v2_movemetaailmentname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movemetacategorydescriptions
|
- name: pokemon_v2_movemetacategorydescriptions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movemetacategorydescription
|
name: pokemon_v2_movemetacategorydescription
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movenames
|
- name: pokemon_v2_movenames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movename
|
name: pokemon_v2_movename
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movetargetdescriptions
|
- name: pokemon_v2_movetargetdescriptions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movetargetdescription
|
name: pokemon_v2_movetargetdescription
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movetargetnames
|
- name: pokemon_v2_movetargetnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movetargetname
|
name: pokemon_v2_movetargetname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_naturenames
|
- name: pokemon_v2_naturenames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_naturename
|
name: pokemon_v2_naturename
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_palparkareanames
|
- name: pokemon_v2_palparkareanames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_palparkareaname
|
name: pokemon_v2_palparkareaname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokeathlonstatnames
|
- name: pokemon_v2_pokeathlonstatnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokeathlonstatname
|
name: pokemon_v2_pokeathlonstatname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokedexdescriptions
|
- name: pokemon_v2_pokedexdescriptions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokedexdescription
|
name: pokemon_v2_pokedexdescription
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokedexnames
|
- name: pokemon_v2_pokedexnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokedexname
|
name: pokemon_v2_pokedexname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemoncolornames
|
- name: pokemon_v2_pokemoncolornames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemoncolorname
|
name: pokemon_v2_pokemoncolorname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemonformnames
|
- name: pokemon_v2_pokemonformnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonformname
|
name: pokemon_v2_pokemonformname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemonhabitatnames
|
- name: pokemon_v2_pokemonhabitatnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonhabitatname
|
name: pokemon_v2_pokemonhabitatname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemonshapenames
|
- name: pokemon_v2_pokemonshapenames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonshapename
|
name: pokemon_v2_pokemonshapename
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemonspeciesdescriptions
|
- name: pokemon_v2_pokemonspeciesdescriptions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonspeciesdescription
|
name: pokemon_v2_pokemonspeciesdescription
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemonspeciesflavortexts
|
- name: pokemon_v2_pokemonspeciesflavortexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonspeciesflavortext
|
name: pokemon_v2_pokemonspeciesflavortext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemonspeciesnames
|
- name: pokemon_v2_pokemonspeciesnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonspeciesname
|
name: pokemon_v2_pokemonspeciesname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_regionnames
|
- name: pokemon_v2_regionnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_regionname
|
name: pokemon_v2_regionname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_statnames
|
- name: pokemon_v2_statnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_statname
|
name: pokemon_v2_statname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_supercontesteffectflavortexts
|
- name: pokemon_v2_supercontesteffectflavortexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_supercontesteffectflavortext
|
name: pokemon_v2_supercontesteffectflavortext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_typenames
|
- name: pokemon_v2_typenames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_typename
|
name: pokemon_v2_typename
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_versionnames
|
- name: pokemon_v2_versionnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: language_id
|
column: language_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_versionname
|
name: pokemon_v2_versionname
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_languagename
|
name: pokemon_v2_languagename
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemonV2LanguageByLocalLanguageId
|
- name: pokemonV2LanguageByLocalLanguageId
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: local_language_id
|
foreign_key_constraint_on: local_language_id
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,42 +2,42 @@ table:
|
||||||
name: pokemon_v2_location
|
name: pokemon_v2_location
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_region
|
- name: pokemon_v2_region
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: region_id
|
foreign_key_constraint_on: region_id
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_locationareas
|
- name: pokemon_v2_locationareas
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: location_id
|
column: location_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_locationarea
|
name: pokemon_v2_locationarea
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_locationgameindices
|
- name: pokemon_v2_locationgameindices
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: location_id
|
column: location_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_locationgameindex
|
name: pokemon_v2_locationgameindex
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_locationnames
|
- name: pokemon_v2_locationnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: location_id
|
column: location_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_locationname
|
name: pokemon_v2_locationname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemonevolutions
|
- name: pokemon_v2_pokemonevolutions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: location_id
|
column: location_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonevolution
|
name: pokemon_v2_pokemonevolution
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,35 +2,35 @@ table:
|
||||||
name: pokemon_v2_locationarea
|
name: pokemon_v2_locationarea
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_location
|
- name: pokemon_v2_location
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: location_id
|
foreign_key_constraint_on: location_id
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_encounters
|
- name: pokemon_v2_encounters
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: location_area_id
|
column: location_area_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_encounter
|
name: pokemon_v2_encounter
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_locationareaencounterrates
|
- name: pokemon_v2_locationareaencounterrates
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: location_area_id
|
column: location_area_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_locationareaencounterrate
|
name: pokemon_v2_locationareaencounterrate
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_locationareanames
|
- name: pokemon_v2_locationareanames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: location_area_id
|
column: location_area_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_locationareaname
|
name: pokemon_v2_locationareaname
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,19 +2,19 @@ table:
|
||||||
name: pokemon_v2_locationareaencounterrate
|
name: pokemon_v2_locationareaencounterrate
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_encountermethod
|
- name: pokemon_v2_encountermethod
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: encounter_method_id
|
foreign_key_constraint_on: encounter_method_id
|
||||||
- name: pokemon_v2_locationarea
|
- name: pokemon_v2_locationarea
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: location_area_id
|
foreign_key_constraint_on: location_area_id
|
||||||
- name: pokemon_v2_version
|
- name: pokemon_v2_version
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: version_id
|
foreign_key_constraint_on: version_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_locationareaname
|
name: pokemon_v2_locationareaname
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
- name: pokemon_v2_locationarea
|
- name: pokemon_v2_locationarea
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: location_area_id
|
foreign_key_constraint_on: location_area_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_locationgameindex
|
name: pokemon_v2_locationgameindex
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_generation
|
- name: pokemon_v2_generation
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: generation_id
|
foreign_key_constraint_on: generation_id
|
||||||
- name: pokemon_v2_location
|
- name: pokemon_v2_location
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: location_id
|
foreign_key_constraint_on: location_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_locationname
|
name: pokemon_v2_locationname
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
- name: pokemon_v2_location
|
- name: pokemon_v2_location
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: location_id
|
foreign_key_constraint_on: location_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,22 +2,22 @@ table:
|
||||||
name: pokemon_v2_machine
|
name: pokemon_v2_machine
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_growthrate
|
- name: pokemon_v2_growthrate
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: growth_rate_id
|
foreign_key_constraint_on: growth_rate_id
|
||||||
- name: pokemon_v2_item
|
- name: pokemon_v2_item
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: item_id
|
foreign_key_constraint_on: item_id
|
||||||
- name: pokemon_v2_move
|
- name: pokemon_v2_move
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_id
|
foreign_key_constraint_on: move_id
|
||||||
- name: pokemon_v2_versiongroup
|
- name: pokemon_v2_versiongroup
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: version_group_id
|
foreign_key_constraint_on: version_group_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,133 +2,133 @@ table:
|
||||||
name: pokemon_v2_move
|
name: pokemon_v2_move
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_contesteffect
|
- name: pokemon_v2_contesteffect
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: contest_effect_id
|
foreign_key_constraint_on: contest_effect_id
|
||||||
- name: pokemon_v2_contesttype
|
- name: pokemon_v2_contesttype
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: contest_type_id
|
foreign_key_constraint_on: contest_type_id
|
||||||
- name: pokemon_v2_generation
|
- name: pokemon_v2_generation
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: generation_id
|
foreign_key_constraint_on: generation_id
|
||||||
- name: pokemon_v2_movedamageclass
|
- name: pokemon_v2_movedamageclass
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_damage_class_id
|
foreign_key_constraint_on: move_damage_class_id
|
||||||
- name: pokemon_v2_moveeffect
|
- name: pokemon_v2_moveeffect
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_effect_id
|
foreign_key_constraint_on: move_effect_id
|
||||||
- name: pokemon_v2_movemetum
|
- name: pokemon_v2_movemetum
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_id
|
column: move_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movemeta
|
name: pokemon_v2_movemeta
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movetarget
|
- name: pokemon_v2_movetarget
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_target_id
|
foreign_key_constraint_on: move_target_id
|
||||||
- name: pokemon_v2_supercontesteffect
|
- name: pokemon_v2_supercontesteffect
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: super_contest_effect_id
|
foreign_key_constraint_on: super_contest_effect_id
|
||||||
- name: pokemon_v2_type
|
- name: pokemon_v2_type
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: type_id
|
foreign_key_constraint_on: type_id
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemonV2ContestcombosBySecondMoveId
|
- name: pokemonV2ContestcombosBySecondMoveId
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: second_move_id
|
column: second_move_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_contestcombo
|
name: pokemon_v2_contestcombo
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemonV2SupercontestcombosBySecondMoveId
|
- name: pokemonV2SupercontestcombosBySecondMoveId
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: second_move_id
|
column: second_move_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_supercontestcombo
|
name: pokemon_v2_supercontestcombo
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_contestcombos
|
- name: pokemon_v2_contestcombos
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: first_move_id
|
column: first_move_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_contestcombo
|
name: pokemon_v2_contestcombo
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_machines
|
- name: pokemon_v2_machines
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_id
|
column: move_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_machine
|
name: pokemon_v2_machine
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_moveattributemaps
|
- name: pokemon_v2_moveattributemaps
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_id
|
column: move_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_moveattributemap
|
name: pokemon_v2_moveattributemap
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movechanges
|
- name: pokemon_v2_movechanges
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_id
|
column: move_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movechange
|
name: pokemon_v2_movechange
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_moveflavortexts
|
- name: pokemon_v2_moveflavortexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_id
|
column: move_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_moveflavortext
|
name: pokemon_v2_moveflavortext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movemeta
|
- name: pokemon_v2_movemeta
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_id
|
column: move_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movemeta
|
name: pokemon_v2_movemeta
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movemetastatchanges
|
- name: pokemon_v2_movemetastatchanges
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_id
|
column: move_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movemetastatchange
|
name: pokemon_v2_movemetastatchange
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movenames
|
- name: pokemon_v2_movenames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_id
|
column: move_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movename
|
name: pokemon_v2_movename
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemonevolutions
|
- name: pokemon_v2_pokemonevolutions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: known_move_id
|
column: known_move_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonevolution
|
name: pokemon_v2_pokemonevolution
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemonmoves
|
- name: pokemon_v2_pokemonmoves
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_id
|
column: move_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonmove
|
name: pokemon_v2_pokemonmove
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_supercontestcombos
|
- name: pokemon_v2_supercontestcombos
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: first_move_id
|
column: first_move_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_supercontestcombo
|
name: pokemon_v2_supercontestcombo
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,31 +2,31 @@ table:
|
||||||
name: pokemon_v2_moveattribute
|
name: pokemon_v2_moveattribute
|
||||||
schema: public
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_moveattributedescriptions
|
- name: pokemon_v2_moveattributedescriptions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_attribute_id
|
column: move_attribute_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_moveattributedescription
|
name: pokemon_v2_moveattributedescription
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_moveattributemaps
|
- name: pokemon_v2_moveattributemaps
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_attribute_id
|
column: move_attribute_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_moveattributemap
|
name: pokemon_v2_moveattributemap
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_moveattributenames
|
- name: pokemon_v2_moveattributenames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_attribute_id
|
column: move_attribute_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_moveattributename
|
name: pokemon_v2_moveattributename
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_moveattributedescription
|
name: pokemon_v2_moveattributedescription
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
- name: pokemon_v2_moveattribute
|
- name: pokemon_v2_moveattribute
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_attribute_id
|
foreign_key_constraint_on: move_attribute_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_moveattributemap
|
name: pokemon_v2_moveattributemap
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_move
|
- name: pokemon_v2_move
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_id
|
foreign_key_constraint_on: move_id
|
||||||
- name: pokemon_v2_moveattribute
|
- name: pokemon_v2_moveattribute
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_attribute_id
|
foreign_key_constraint_on: move_attribute_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_moveattributename
|
name: pokemon_v2_moveattributename
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
- name: pokemon_v2_moveattribute
|
- name: pokemon_v2_moveattribute
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_attribute_id
|
foreign_key_constraint_on: move_attribute_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,24 +2,24 @@ table:
|
||||||
name: pokemon_v2_movebattlestyle
|
name: pokemon_v2_movebattlestyle
|
||||||
schema: public
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_movebattlestylenames
|
- name: pokemon_v2_movebattlestylenames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_battle_style_id
|
column: move_battle_style_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movebattlestylename
|
name: pokemon_v2_movebattlestylename
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_naturebattlestylepreferences
|
- name: pokemon_v2_naturebattlestylepreferences
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_battle_style_id
|
column: move_battle_style_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_naturebattlestylepreference
|
name: pokemon_v2_naturebattlestylepreference
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_movebattlestylename
|
name: pokemon_v2_movebattlestylename
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
- name: pokemon_v2_movebattlestyle
|
- name: pokemon_v2_movebattlestyle
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_battle_style_id
|
foreign_key_constraint_on: move_battle_style_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,22 +2,22 @@ table:
|
||||||
name: pokemon_v2_movechange
|
name: pokemon_v2_movechange
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_move
|
- name: pokemon_v2_move
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_id
|
foreign_key_constraint_on: move_id
|
||||||
- name: pokemon_v2_moveeffect
|
- name: pokemon_v2_moveeffect
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_effect_id
|
foreign_key_constraint_on: move_effect_id
|
||||||
- name: pokemon_v2_type
|
- name: pokemon_v2_type
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: type_id
|
foreign_key_constraint_on: type_id
|
||||||
- name: pokemon_v2_versiongroup
|
- name: pokemon_v2_versiongroup
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: version_group_id
|
foreign_key_constraint_on: version_group_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,45 +2,45 @@ table:
|
||||||
name: pokemon_v2_movedamageclass
|
name: pokemon_v2_movedamageclass
|
||||||
schema: public
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_movedamageclassdescriptions
|
- name: pokemon_v2_movedamageclassdescriptions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_damage_class_id
|
column: move_damage_class_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movedamageclassdescription
|
name: pokemon_v2_movedamageclassdescription
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movedamageclassnames
|
- name: pokemon_v2_movedamageclassnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_damage_class_id
|
column: move_damage_class_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movedamageclassname
|
name: pokemon_v2_movedamageclassname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_moves
|
- name: pokemon_v2_moves
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_damage_class_id
|
column: move_damage_class_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_move
|
name: pokemon_v2_move
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_stats
|
- name: pokemon_v2_stats
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_damage_class_id
|
column: move_damage_class_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_stat
|
name: pokemon_v2_stat
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_types
|
- name: pokemon_v2_types
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_damage_class_id
|
column: move_damage_class_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_type
|
name: pokemon_v2_type
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_movedamageclassdescription
|
name: pokemon_v2_movedamageclassdescription
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
- name: pokemon_v2_movedamageclass
|
- name: pokemon_v2_movedamageclass
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_damage_class_id
|
foreign_key_constraint_on: move_damage_class_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_movedamageclassname
|
name: pokemon_v2_movedamageclassname
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
- name: pokemon_v2_movedamageclass
|
- name: pokemon_v2_movedamageclass
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_damage_class_id
|
foreign_key_constraint_on: move_damage_class_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,38 +2,38 @@ table:
|
||||||
name: pokemon_v2_moveeffect
|
name: pokemon_v2_moveeffect
|
||||||
schema: public
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_movechanges
|
- name: pokemon_v2_movechanges
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_effect_id
|
column: move_effect_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movechange
|
name: pokemon_v2_movechange
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_moveeffectchanges
|
- name: pokemon_v2_moveeffectchanges
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_effect_id
|
column: move_effect_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_moveeffectchange
|
name: pokemon_v2_moveeffectchange
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_moveeffecteffecttexts
|
- name: pokemon_v2_moveeffecteffecttexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_effect_id
|
column: move_effect_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_moveeffecteffecttext
|
name: pokemon_v2_moveeffecteffecttext
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_moves
|
- name: pokemon_v2_moves
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_effect_id
|
column: move_effect_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_move
|
name: pokemon_v2_move
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,24 +2,24 @@ table:
|
||||||
name: pokemon_v2_moveeffectchange
|
name: pokemon_v2_moveeffectchange
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_moveeffect
|
- name: pokemon_v2_moveeffect
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_effect_id
|
foreign_key_constraint_on: move_effect_id
|
||||||
- name: pokemon_v2_versiongroup
|
- name: pokemon_v2_versiongroup
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: version_group_id
|
foreign_key_constraint_on: version_group_id
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_moveeffectchangeeffecttexts
|
- name: pokemon_v2_moveeffectchangeeffecttexts
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_effect_change_id
|
column: move_effect_change_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_moveeffectchangeeffecttext
|
name: pokemon_v2_moveeffectchangeeffecttext
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_moveeffectchangeeffecttext
|
name: pokemon_v2_moveeffectchangeeffecttext
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
- name: pokemon_v2_moveeffectchange
|
- name: pokemon_v2_moveeffectchange
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_effect_change_id
|
foreign_key_constraint_on: move_effect_change_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_moveeffecteffecttext
|
name: pokemon_v2_moveeffecteffecttext
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
- name: pokemon_v2_moveeffect
|
- name: pokemon_v2_moveeffect
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_effect_id
|
foreign_key_constraint_on: move_effect_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,19 +2,19 @@ table:
|
||||||
name: pokemon_v2_moveflavortext
|
name: pokemon_v2_moveflavortext
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
- name: pokemon_v2_move
|
- name: pokemon_v2_move
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_id
|
foreign_key_constraint_on: move_id
|
||||||
- name: pokemon_v2_versiongroup
|
- name: pokemon_v2_versiongroup
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: version_group_id
|
foreign_key_constraint_on: version_group_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,38 +2,38 @@ table:
|
||||||
name: pokemon_v2_movelearnmethod
|
name: pokemon_v2_movelearnmethod
|
||||||
schema: public
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_movelearnmethoddescriptions
|
- name: pokemon_v2_movelearnmethoddescriptions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_learn_method_id
|
column: move_learn_method_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movelearnmethoddescription
|
name: pokemon_v2_movelearnmethoddescription
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movelearnmethodnames
|
- name: pokemon_v2_movelearnmethodnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_learn_method_id
|
column: move_learn_method_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movelearnmethodname
|
name: pokemon_v2_movelearnmethodname
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_pokemonmoves
|
- name: pokemon_v2_pokemonmoves
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_learn_method_id
|
column: move_learn_method_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_pokemonmove
|
name: pokemon_v2_pokemonmove
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_versiongroupmovelearnmethods
|
- name: pokemon_v2_versiongroupmovelearnmethods
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_learn_method_id
|
column: move_learn_method_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_versiongroupmovelearnmethod
|
name: pokemon_v2_versiongroupmovelearnmethod
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_movelearnmethoddescription
|
name: pokemon_v2_movelearnmethoddescription
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
- name: pokemon_v2_movelearnmethod
|
- name: pokemon_v2_movelearnmethod
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_learn_method_id
|
foreign_key_constraint_on: move_learn_method_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_movelearnmethodname
|
name: pokemon_v2_movelearnmethodname
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
- name: pokemon_v2_movelearnmethod
|
- name: pokemon_v2_movelearnmethod
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_learn_method_id
|
foreign_key_constraint_on: move_learn_method_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,19 +2,19 @@ table:
|
||||||
name: pokemon_v2_movemeta
|
name: pokemon_v2_movemeta
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_move
|
- name: pokemon_v2_move
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_id
|
foreign_key_constraint_on: move_id
|
||||||
- name: pokemon_v2_movemetaailment
|
- name: pokemon_v2_movemetaailment
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_meta_ailment_id
|
foreign_key_constraint_on: move_meta_ailment_id
|
||||||
- name: pokemon_v2_movemetacategory
|
- name: pokemon_v2_movemetacategory
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_meta_category_id
|
foreign_key_constraint_on: move_meta_category_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,24 +2,24 @@ table:
|
||||||
name: pokemon_v2_movemetaailment
|
name: pokemon_v2_movemetaailment
|
||||||
schema: public
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_movemeta
|
- name: pokemon_v2_movemeta
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_meta_ailment_id
|
column: move_meta_ailment_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movemeta
|
name: pokemon_v2_movemeta
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movemetaailmentnames
|
- name: pokemon_v2_movemetaailmentnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_meta_ailment_id
|
column: move_meta_ailment_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movemetaailmentname
|
name: pokemon_v2_movemetaailmentname
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_movemetaailmentname
|
name: pokemon_v2_movemetaailmentname
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
- name: pokemon_v2_movemetaailment
|
- name: pokemon_v2_movemetaailment
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_meta_ailment_id
|
foreign_key_constraint_on: move_meta_ailment_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,24 +2,24 @@ table:
|
||||||
name: pokemon_v2_movemetacategory
|
name: pokemon_v2_movemetacategory
|
||||||
schema: public
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_movemeta
|
- name: pokemon_v2_movemeta
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_meta_category_id
|
column: move_meta_category_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movemeta
|
name: pokemon_v2_movemeta
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movemetacategorydescriptions
|
- name: pokemon_v2_movemetacategorydescriptions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_meta_category_id
|
column: move_meta_category_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movemetacategorydescription
|
name: pokemon_v2_movemetacategorydescription
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_movemetacategorydescription
|
name: pokemon_v2_movemetacategorydescription
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
- name: pokemon_v2_movemetacategory
|
- name: pokemon_v2_movemetacategory
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_meta_category_id
|
foreign_key_constraint_on: move_meta_category_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_movemetastatchange
|
name: pokemon_v2_movemetastatchange
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_move
|
- name: pokemon_v2_move
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_id
|
foreign_key_constraint_on: move_id
|
||||||
- name: pokemon_v2_stat
|
- name: pokemon_v2_stat
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: stat_id
|
foreign_key_constraint_on: stat_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,16 +2,16 @@ table:
|
||||||
name: pokemon_v2_movename
|
name: pokemon_v2_movename
|
||||||
schema: public
|
schema: public
|
||||||
object_relationships:
|
object_relationships:
|
||||||
- name: pokemon_v2_language
|
- name: pokemon_v2_language
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: language_id
|
foreign_key_constraint_on: language_id
|
||||||
- name: pokemon_v2_move
|
- name: pokemon_v2_move
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on: move_id
|
foreign_key_constraint_on: move_id
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
|
@ -2,31 +2,31 @@ table:
|
||||||
name: pokemon_v2_movetarget
|
name: pokemon_v2_movetarget
|
||||||
schema: public
|
schema: public
|
||||||
array_relationships:
|
array_relationships:
|
||||||
- name: pokemon_v2_moves
|
- name: pokemon_v2_moves
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_target_id
|
column: move_target_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_move
|
name: pokemon_v2_move
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movetargetdescriptions
|
- name: pokemon_v2_movetargetdescriptions
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_target_id
|
column: move_target_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movetargetdescription
|
name: pokemon_v2_movetargetdescription
|
||||||
schema: public
|
schema: public
|
||||||
- name: pokemon_v2_movetargetnames
|
- name: pokemon_v2_movetargetnames
|
||||||
using:
|
using:
|
||||||
foreign_key_constraint_on:
|
foreign_key_constraint_on:
|
||||||
column: move_target_id
|
column: move_target_id
|
||||||
table:
|
table:
|
||||||
name: pokemon_v2_movetargetname
|
name: pokemon_v2_movetargetname
|
||||||
schema: public
|
schema: public
|
||||||
select_permissions:
|
select_permissions:
|
||||||
- permission:
|
- role: anon
|
||||||
allow_aggregations: true
|
permission:
|
||||||
columns: "*"
|
columns: '*'
|
||||||
filter: {}
|
filter: {}
|
||||||
limit: 100000
|
limit: 100000
|
||||||
role: anon
|
allow_aggregations: true
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue