-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathusers.yml
More file actions
107 lines (103 loc) · 4.23 KB
/
users.yml
File metadata and controls
107 lines (103 loc) · 4.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# == Schema Information
#
# Table name: users
#
# id :bigint not null, primary key
# accepted_code_of_conduct :datetime
# accepted_terms_and_conditions :boolean
# challenge_sponsor_contact_enter :boolean default(FALSE)
# challenge_sponsor_contact_place :boolean default(FALSE)
# coder :boolean default(FALSE)
# confirmation_sent_at :datetime
# confirmation_token :string
# confirmed_at :datetime
# creative :boolean default(FALSE)
# current_sign_in_at :datetime
# current_sign_in_ip :inet
# data_cruncher :boolean default(FALSE)
# deactivated_at :datetime
# dietary_requirements :text
# email :string default(""), not null
# encrypted_password :string default(""), not null
# facilitator :boolean default(FALSE)
# failed_attempts :integer default(0), not null
# full_name :string default(""), not null
# google_img :string
# how_did_you_hear :text
# last_sign_in_at :datetime
# last_sign_in_ip :inet
# locked_at :datetime
# mailing_list :boolean default(FALSE)
# me_govhack_contact :boolean default(FALSE)
# my_project_sponsor_contact :boolean default(FALSE)
# organisation_name :string
# parent_guardian :string
# phone_number :string
# preferred_img :string
# preferred_name :string
# region :integer
# registration_type :string
# remember_created_at :datetime
# request_not_photographed :boolean default(FALSE)
# reset_password_sent_at :datetime
# reset_password_token :string
# sign_in_count :integer default(0), not null
# slack :string
# tshirt_size :string
# unconfirmed_email :string
# under_18 :boolean
# unlock_token :string
# created_at :datetime not null
# updated_at :datetime not null
# acting_on_behalf_of_id :integer
#
# Indexes
#
# index_users_on_confirmation_token (confirmation_token) UNIQUE
# index_users_on_email (email) UNIQUE
# index_users_on_region (region)
# index_users_on_reset_password_token (reset_password_token) UNIQUE
# index_users_on_under_18 (under_18)
# index_users_on_unlock_token (unlock_token) UNIQUE
#
# This model initially had no columns defined. If you add columns to the
# model remove the '{}' from the fixture names and add the columns immediately
# below each fixture, per the syntax in the comments below
#
one:
email: user1@example.com
full_name: User Number One
accepted_terms_and_conditions: true
confirmed_at: <%= Time.current - 1.year %>
how_did_you_hear: [no response recorded]
me_govhack_contact: true
accepted_code_of_conduct: <%= Time.now %>
mailing_list: true
region: South Australia
registration_type: Competitor
acting_on_behalf_of_user: three
two:
email: user2@example.com
full_name: User Number Two
accepted_terms_and_conditions: true
confirmed_at: <%= Time.current - 1.year %>
how_did_you_hear: [no response recorded]
me_govhack_contact: true
accepted_code_of_conduct: <%= Time.now %>
region: New Zealand
registration_type: Mentor
three:
email: user3@example.com
full_name: User Number Three
accepted_terms_and_conditions: true
confirmed_at: <%= Time.current - 1.year %>
how_did_you_hear: [no response recorded]
accepted_code_of_conduct: <%= Time.now %>
region: New South Wales
registration_type: Organiser
unconfirmed_user:
email: user4@example.com
full_name: User Number Four
accepted_terms_and_conditions: true
confirmed_at: nil
confirmation_sent_at: <%= Time.now %>