mirror of
https://github.com/System-End/theseus.git
synced 2026-04-19 18:45:15 +00:00
formerly chuck's
This commit is contained in:
parent
761ef3917c
commit
eac12782ab
1 changed files with 16 additions and 0 deletions
16
db/seeds.rb
16
db/seeds.rb
|
|
@ -13,6 +13,22 @@ SourceTag.find_or_create_by!(
|
||||||
owner: "Nora",
|
owner: "Nora",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
ReturnAddress.find_or_create_by!(id: 1) do |address|
|
||||||
|
address.name = "Hack Club"
|
||||||
|
address.line_1 = "15 Falls Rd."
|
||||||
|
address.city = "Shelburne"
|
||||||
|
address.state = "VT"
|
||||||
|
address.postal_code = "05482"
|
||||||
|
address.country = "US"
|
||||||
|
address.shared = true
|
||||||
|
end
|
||||||
|
|
||||||
|
USPS::MailerId.find_or_create_by(id: 1) do |mid|
|
||||||
|
mid.name = "Hack Club (Shelburne)"
|
||||||
|
mid.crid = "40039652"
|
||||||
|
mid.mid = "903258919"
|
||||||
|
end
|
||||||
|
|
||||||
# Warehouse::PurposeCode.find_or_create_by!(
|
# Warehouse::PurposeCode.find_or_create_by!(
|
||||||
# code: Rails.env.production? ? 'HQ' : 'HQ-dev',
|
# code: Rails.env.production? ? 'HQ' : 'HQ-dev',
|
||||||
# description: 'general HQ mailing'
|
# description: 'general HQ mailing'
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue