Skip to content

Commit

Permalink
missing update_time in pod table but used in code
Browse files Browse the repository at this point in the history
  • Loading branch information
karupanerura committed Jun 11, 2022
1 parent 5b42089 commit ed4d503
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sql/sqlite.sql
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ create table pod (
path varchar(255) not null PRIMARY KEY,
distvname varchar(255) not null,
repository varchar(255) not null,
html text
html text,
update_time integer
);
CREAte INDEX if not exists package on pod (package);
CREAte INDEX if not exists distvname on pod (distvname);
Expand Down

0 comments on commit ed4d503

Please sign in to comment.