mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
28 lines
653 B
YAML
28 lines
653 B
YAML
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
|
|
|
|
one:
|
|
name: Christmas deals
|
|
code: XMAS10
|
|
percent_off: 10
|
|
valid_until: 2015-12-31 23:59:59
|
|
max_usages: nil
|
|
active: true
|
|
validity_per_user: once
|
|
|
|
two:
|
|
name: Summer discounts
|
|
code: SUNNYFABLAB
|
|
percent_off: 15
|
|
valid_until: <%= 1.month.from_now.utc.strftime('%Y-%m-%d %H:%M:%S.%9N Z') %>
|
|
max_usages: 10
|
|
active: true
|
|
validity_per_user: always
|
|
|
|
cash:
|
|
name: Cash Code
|
|
code: ZERG6H1R65H
|
|
amount_off: 10000
|
|
valid_until: <%= 1.year.from_now.utc.strftime('%Y-%m-%d %H:%M:%S.%9N Z') %>
|
|
max_usages: 1
|
|
active: true
|
|
validity_per_user: once |