Update parent to latest version
[yosql.git] / yosql-examples / yosql-examples-gradle / yosql-examples-gradle-jdbc-java15 / src / main / yosql / schema / createPersonsTable.sql
blobf62d6b0b82055e53b67f46ef4843491b3f2a10b4
1 /*
2  * This file is part of yosql. It is subject to the license terms in the LICENSE file found in the top-level
3  * directory of this distribution and at https://creativecommons.org/publicdomain/zero/1.0/. No part of yosql,
4  * including this file, may be copied, modified, propagated, or distributed except according to the terms contained
5  * in the LICENSE file.
6  */
8 --
9 --
10 CREATE TABLE persons
12     id   INTEGER,
13     name VARCHAR(50)
17 CREATE TABLE person_to_company
19     person_id INTEGER,
20     company_id INTEGER