-
Notifications
You must be signed in to change notification settings - Fork 0
/
migration notes.txt
executable file
·43 lines (33 loc) · 1.48 KB
/
migration notes.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
37
38
39
40
41
rails g model Company hidden:boolean community_profile:boolean name:string angellist_url:string logo_url:string thumb_url:string quality:integer product_desc:text high_concept:text follower_count:integer company_url:string created_at:date updated_at:date twitter_url:string blog_url:string video_url:string
has_many market_tags
has_one location_tag
# https://api.angel.co/1/jobs
# jobs
# id
# angel_id
# title
# description
# created_at
# updated_at
# equity_min
# equity_max
# currency_code
# job_type
# salary_min
# salary_max
# angellist_url
# location (tags.tag_type=LocationTag&name)
# role (tags.tag_type=RoleTag&name)
# company_name (startup.name)
# company_id (startup.id)
# logo_url (startup.logo_url)
# product_desc (startup.product_desc)
# high_concept (startup.high_concept)
# company_url (startup.company_url)
# page_id
# jobs an hgel_id:integer title:string description:text listing_created_at:string listing_updated_at:datetime equity_min:float equity_max:float currency_code:string job_type:string salary_min:integer salary_max:integer angellist_url:string location:string role:string company_name:string company_id:integer logo_url:string product_desc:text high_concept:text company_url:string page_id:integer
# job_skills
# angel_id
# job_id
# display_name
# rails g JobSkill job:references name:string id:integer