diff --git a/demo/metadata/remote_schemas.yaml b/demo/metadata/remote_schemas.yaml index fe51488..37db422 100644 --- a/demo/metadata/remote_schemas.yaml +++ b/demo/metadata/remote_schemas.yaml @@ -1 +1,5 @@ -[] +- name: my-remote-schema + definition: + url: https://graphql-pokemon.now.sh/ + timeout_seconds: 60 + forward_client_headers: true diff --git a/demo/migrations/limitless-escarpment-14285/1627549211329_create_table_library_books/down.sql b/demo/migrations/limitless-escarpment-14285/1627549211329_create_table_library_books/down.sql index b0e43fa..84a0473 100644 --- a/demo/migrations/limitless-escarpment-14285/1627549211329_create_table_library_books/down.sql +++ b/demo/migrations/limitless-escarpment-14285/1627549211329_create_table_library_books/down.sql @@ -1,3 +1 @@ DROP TABLE "library"."books"; - -DROP TABLE "library"."test"; diff --git a/demo/migrations/limitless-escarpment-14285/1627549211329_create_table_library_books/up.sql b/demo/migrations/limitless-escarpment-14285/1627549211329_create_table_library_books/up.sql index e07d44f..376028d 100644 --- a/demo/migrations/limitless-escarpment-14285/1627549211329_create_table_library_books/up.sql +++ b/demo/migrations/limitless-escarpment-14285/1627549211329_create_table_library_books/up.sql @@ -1,3 +1 @@ CREATE TABLE "library"."books" ("id" serial NOT NULL, PRIMARY KEY ("id") ); - -CREATE TABLE "library"."test" ("id" serial NOT NULL, PRIMARY KEY ("id") );