Skip to content

Commit

Permalink
Fix schema for mysql.
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrooo committed Oct 11, 2013
1 parent 6c57f33 commit 00dc5ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test-db/recreate_schema_mysql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CREATE TABLE orders (
);

CREATE TABLE order_products (
id INTEGER AUTO_INCREMENT PRIMARY KEY,
id_order_products INTEGER AUTO_INCREMENT PRIMARY KEY,
id_order INTEGER REFERENCES orders (id_order),
id_product INTEGER REFERENCES products (id_product)
);
Expand Down

0 comments on commit 00dc5ab

Please sign in to comment.