Skip to content

Commit

Permalink
Rebuild the SQL files after fixes in Ada Database Objects library
Browse files Browse the repository at this point in the history
  • Loading branch information
stcarrez committed Nov 13, 2022
1 parent 340ff72 commit 8c634c4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions awa/db/regtests/mysql/create-regtests-mysql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ CREATE TABLE IF NOT EXISTS ado_version (
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT IGNORE INTO ado_entity_type (name) VALUES
("ado_entity_type"), ("ado_sequence"), ("ado_version");
INSERT IGNORE INTO ado_version (name, version) VALUES ("ado", 2);
/* Copied from awa-mysql.sql*/
/* File generated automatically by dynamo */
/* The Audit table records the changes made on database on behalf of a user.
Expand Down
3 changes: 3 additions & 0 deletions awa/db/regtests/postgresql/create-regtests-postgresql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ CREATE TABLE IF NOT EXISTS ado_version (
INSERT INTO ado_entity_type (name) VALUES
('ado_entity_type'), ('ado_sequence'), ('ado_version')
ON CONFLICT DO NOTHING;
INSERT INTO ado_version (name, version)
VALUES ("ado", 2)
ON CONFLICT DO NOTHING;
/* Copied from awa-postgresql.sql*/
/* File generated automatically by dynamo */
/* The Audit table records the changes made on database on behalf of a user.
Expand Down
1 change: 1 addition & 0 deletions awa/db/regtests/sqlite/create-regtests-sqlite.sql
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ CREATE TABLE IF NOT EXISTS ado_version (
INSERT OR IGNORE INTO ado_entity_type (name) VALUES ("ado_entity_type");
INSERT OR IGNORE INTO ado_entity_type (name) VALUES ("ado_sequence");
INSERT OR IGNORE INTO ado_entity_type (name) VALUES ("ado_version");
INSERT OR IGNORE INTO ado_version (name, version) VALUES ("ado", 2);
/* Copied from awa-sqlite.sql*/
/* File generated automatically by dynamo */
/* The Audit table records the changes made on database on behalf of a user.
Expand Down

0 comments on commit 8c634c4

Please sign in to comment.