forked from nyaruka/rp-indexer
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from nyaruka/rowanseymour-patch-1
🧽 Don't filter on is_test
- v7.5.0-ire-staging
- 7.6.0-retry-ire
- 7.6.0-retry
- 1.2.2-indexer-10.0.0-staging-ire
- 1.2.2-indexer-9.2.0-staging-ire
- 1.2.2-indexer-9.2.0-ire
- 1.2.2-indexer-9.2.0-develop-ire
- 1.2.1-indexer-9.0.0-ire
- 1.2.0-indexer-9.0.0-develop-ire
- 1.2.0-indexer-9.0.0-a4-develop-ire
- 1.2.0-indexer-9.0.0-a3-develop-ire
- 1.2.0-indexer-9.0.0-a2-develop-ire
- 1.2.0-indexer-9.0.0-a1-develop-ire
- 1.2.0-indexer-8.2.0-ire
- 1.1.0-indexer-8.2.0-ire
- 1.1.0-indexer-7.5.0-retry-ire
- 1.1.0-indexer-7.5.0-fix_retry-ire
- 1.1.0-a2-indexer-7.5.0-retry-ire
- 1.1.0-a1-indexer-7.5.0-retry-ire
- 1.0.0-indexer-7.5.0-irlanda
- 1.0.0-indexer-7.5.0-ire
- 1.0.0-a1-indexer-7.5.0-ire
Showing
4 changed files
with
49 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
-- update one of our contacts | ||
DELETE FROM contacts_contactgroup_contacts WHERE id = 4; | ||
UPDATE contacts_contact SET name = 'John Deer', modified_on = '2020-08-20 14:00:00+00' where id = 3; | ||
DELETE FROM contacts_contactgroup_contacts WHERE id = 3; | ||
UPDATE contacts_contact SET name = 'John Deer', modified_on = '2020-08-20 14:00:00+00' where id = 2; | ||
|
||
-- delete one of our others | ||
UPDATE contacts_contact SET is_active = FALSE, modified_on = '2020-08-22 15:00:00+00' where id = 5; | ||
UPDATE contacts_contact SET is_active = FALSE, modified_on = '2020-08-22 15:00:00+00' where id = 4; | ||
|
||
|