Skip to content

Commit

Permalink
updated cleanup scripts added object collection table
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Jun 25, 2018
1 parent 9eb97d5 commit c3693f1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions repo/repo-sql-impl-test/sql-procedures/mysql.sql
Expand Up @@ -77,6 +77,7 @@ DETERMINISTIC
DELETE FROM m_function_library;
DELETE FROM m_ext_item;
DELETE FROM m_object_subtype;
DELETE FROM m_object_collection;
DELETE FROM m_object;

RETURN run;
Expand Down
1 change: 1 addition & 0 deletions repo/repo-sql-impl-test/sql-procedures/postgresql.sql
Expand Up @@ -70,6 +70,7 @@ BEGIN
TRUNCATE TABLE m_function_library RESTART IDENTITY CASCADE;
TRUNCATE TABLE m_ext_item RESTART IDENTITY CASCADE;
TRUNCATE TABLE m_object_subtype RESTART IDENTITY CASCADE;
TRUNCATE TABLE m_object_collection RESTART IDENTITY CASCADE;
TRUNCATE TABLE m_object RESTART IDENTITY CASCADE;
RETURN 0;
END;
Expand Down
1 change: 1 addition & 0 deletions repo/repo-sql-impl-test/sql-procedures/sqlserver.sql
Expand Up @@ -81,6 +81,7 @@ AS
DELETE FROM m_function_library;
DELETE FROM m_ext_item;
DELETE FROM m_object_subtype;
DELETE FROM m_object_collection;
DELETE FROM m_object;
END
GO

0 comments on commit c3693f1

Please sign in to comment.