File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -6,14 +6,12 @@ exports.up = async (knex) => {
6
6
table . integer ( 'github_org_id' ) . unique ( )
7
7
table . string ( 'node_id' )
8
8
table . string ( 'url' )
9
- table . string ( 'repos_url' )
10
9
table . string ( 'avatar_url' )
11
10
table . text ( 'description' )
12
11
table . string ( 'name' )
13
12
table . string ( 'company' )
14
13
table . string ( 'blog' )
15
14
table . string ( 'location' )
16
- table . string ( 'email' )
17
15
table . string ( 'twitter_username' )
18
16
table . boolean ( 'is_verified' )
19
17
table . boolean ( 'has_organization_projects' )
Original file line number Diff line number Diff line change @@ -45,14 +45,12 @@ CREATE TABLE public.github_organizations (
45
45
github_org_id integer ,
46
46
node_id character varying (255 ),
47
47
url character varying (255 ),
48
- repos_url character varying (255 ),
49
48
avatar_url character varying (255 ),
50
49
description text ,
51
50
name character varying (255 ),
52
51
company character varying (255 ),
53
52
blog character varying (255 ),
54
53
location character varying (255 ),
55
- email character varying (255 ),
56
54
twitter_username character varying (255 ),
57
55
is_verified boolean ,
58
56
has_organization_projects boolean ,
You can’t perform that action at this time.
0 commit comments