Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2017-02-16 20:57:47 +0300
committerStan Hu <stanhu@gmail.com>2017-02-16 20:57:47 +0300
commita7ddd4f07563ca6aac1f7802613294a457d972a4 (patch)
treebf877d3f0a8a22beef7b8b8b4930dd1bd63de3be /db
parent0aaf22ded4e98f91a8b34539d9afe3ce20003e4d (diff)
parent179ae4ab5b5584f62234b7321aa5c7a1d7ae484d (diff)
Merge branch 'seed-abuse-reports' into 'master'
Seed abuse reports See merge request !9234
Diffstat (limited to 'db')
-rw-r--r--db/fixtures/development/18_abuse_reports.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/fixtures/development/18_abuse_reports.rb b/db/fixtures/development/18_abuse_reports.rb
new file mode 100644
index 00000000000..8618d10387a
--- /dev/null
+++ b/db/fixtures/development/18_abuse_reports.rb
@@ -0,0 +1,5 @@
+require 'factory_girl_rails'
+
+(AbuseReport.default_per_page + 3).times do
+ FactoryGirl.create(:abuse_report)
+end