This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mordecai=# CREATE TABLE categories ( | |
| id serial PRIMARY KEY, | |
| title varchar(50)); | |
| CREATE TABLE | |
| mordecai=# CREATE TABLE tests ( id serial PRIMARY KEY, | |
| mordecai(# title varchar(25), | |
| mordecai(# level int, | |
| mordecai(# category_id int); | |
| CREATE TABLE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| GET /anything HTTP/1.1 | |
| Host: httpbin.org | |
| HTTP/1.1 200 OK | |
| Connection: keep-alive | |
| Server: gunicorn/19.9.0 | |
| Date: Sun, 02 Dec 2018 09:46:58 GMT | |
| Content-Type: application/json | |
| Content-Length: 246 | |
| Access-Control-Allow-Origin: * |