File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ $SQLITE "$1" -init schema.txt "insert into config (
38
38
registration_enabled
39
39
)
40
40
values (
41
- 'agreper-v0.1',
41
+ 'agreper-v0.1.1 ',
42
42
'Agreper',
43
43
'',
44
44
'$( head -c 30 /dev/urandom | base64) ',
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ create table threads (
27
27
title varchar(64) not null,
28
28
text text not null,
29
29
score integer not null default 0,
30
- dead boolean not null default false
30
+ hidden boolean not null default false
31
31
);
32
32
33
33
create table comments (
@@ -39,7 +39,7 @@ create table comments (
39
39
modify_time integer not null,
40
40
text text not null,
41
41
score integer not null default 0,
42
- dead boolean not null default false
42
+ hidden boolean not null default false
43
43
);
44
44
45
45
create table forums (
You can’t perform that action at this time.
0 commit comments