Pull changes from upstream repository.
This commit is contained in:
parent
1d148b2116
commit
98e4e0c8b3
49 changed files with 4414 additions and 3 deletions
4
test/test-app/mysql-data/init.sql
Normal file
4
test/test-app/mysql-data/init.sql
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
CREATE TABLE products (id INTEGER, name VARCHAR(256), price FLOAT, variant INTEGER);
|
||||
CREATE TABLE products_variant (id INTEGER, name VARCHAR(256));
|
||||
INSERT INTO products_variant (id, name) VALUES ('1', 'blue'), ('2', 'green');
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue