summaryrefslogtreecommitdiff
path: root/db/seeds.rb
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-04-06 20:11:30 -0400
committerDavid Gay <david@davidgay.org>2021-04-06 20:11:30 -0400
commit84db8024dfe821efefadf77f91922f0944833a40 (patch)
treeb91ba0785f26131eac63512484df664f6f44407a /db/seeds.rb
parentbf4912554058164fabd410b3082b6aa53e7ed026 (diff)
PTU action types
Diffstat (limited to 'db/seeds.rb')
-rw-r--r--db/seeds.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/db/seeds.rb b/db/seeds.rb
index efd1ce7..6d2b152 100644
--- a/db/seeds.rb
+++ b/db/seeds.rb
@@ -12,3 +12,5 @@
["Static", "At-Will", "EOT", "Scene", "Scene x2", "Scene x3", "Daily"].each do |name|
PtuFrequency.find_or_create_by(name: name)
end
+
+%w[Standard Shift Swift Free].each { |name| PtuActionType.find_or_create_by(name: name) }