forked from kellybhoward/landit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.txt
36 lines (29 loc) · 870 Bytes
/
test.txt
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
rails g model Job user:references state:references company_name:string company_url:string position:string city:string application_url:string mission:text notes:text write_cv:boolean est_salary:int review_resume:boolean apply:boolean apply_time:timestamp confirmation:boolean interview:boolean interview_date:timestamp interview_notes:text offer:boolean salary:int offer_notes:text start_date:date accept:boolean
rails g model Job
user:references
state:references
<job form>
company_name:string
company_url:string
position:string
city:string
application_url:string
<research>
mission:text
notes:text
est_salary:int
<to-do>
write_cv:boolean
review_resume:boolean
apply:boolean
apply_time:timestamp
<status>
confirmation:boolean
interview:boolean
interview_date:timestamp
interview_notes:text
offer:boolean
salary:int
offer_notes:text
start_date:date
accept:boolean