reformat code
[yosql.git] / yosql-benchmarks / yosql-benchmarks-dao / src / main / yosql / schema / createCompaniesTable.sql
blob5e13ebaf53ccebb376ef7df05890938e52e6a616
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 IF NOT EXISTS companies
12     pid
13     BIGINT
14     PRIMARY
15     KEY
16     AUTO_INCREMENT,
17     name
18     VARCHAR
20     50
22     address VARCHAR
24     50
26     )