Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ create table su_project (
url_signature varchar(1024) not null,
share double not null,
status tinyint not null,
avg_ec double not null,
avg_ec_adjusted double not null,
web_url varchar(254) not null,
authenticator varchar(254) not null,
nhosts integer not null,
avg_ec double not null default 0,
avg_ec_adjusted double not null default 0,
web_url varchar(254) not null default '',
authenticator varchar(254) not null default '',
nhosts integer not null default 0,
primary key (id)
) engine=InnoDB;

Expand Down