diff options
author | Michael Kozono <mkozono@gmail.com> | 2018-02-13 12:31:30 -0800 |
---|---|---|
committer | Michael Kozono <mkozono@gmail.com> | 2018-02-13 13:19:54 -0800 |
commit | ee4409e7db8d25385a8a0f87e939b9a265a4984c (patch) | |
tree | a229d86d4bf9eb650e12460f270cebf0a5c7dfc5 /spec/migrations/README.md | |
parent | bf5e617a10e8df48ff78442f42f2cd6e47f59072 (diff) | |
download | gitlab-ce-mk-test-branch.tar.gz |
Avoid dropping tables in testmk-test-branchmk-fix-pg-undefined-table-ci-errors
And use :migration tag to use deletion strategy, and to avoid caching tables, and to lock into a particular schema.
Attempting to fix intermittent spec errors `PG::UndefinedTable: ERROR: relation "public.untracked_files_for_uploads" does not exist`.
Diffstat (limited to 'spec/migrations/README.md')
-rw-r--r-- | spec/migrations/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/migrations/README.md b/spec/migrations/README.md index 45cf25b96de..49760fa62b8 100644 --- a/spec/migrations/README.md +++ b/spec/migrations/README.md @@ -89,5 +89,5 @@ end ## Best practices 1. Note that this type of tests do not run within the transaction, we use -a truncation database cleanup strategy. Do not depend on transaction being +a deletion database cleanup strategy. Do not depend on transaction being present. |