Skip to content

Commit 8f53d14

Browse files
committed
Update schema.txt
1 parent 77e9051 commit 8f53d14

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

init_sqlite.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ $SQLITE "$1" -init schema.txt "insert into config (
3838
registration_enabled
3939
)
4040
values (
41-
'agreper-v0.1',
41+
'agreper-v0.1.1',
4242
'Agreper',
4343
'',
4444
'$(head -c 30 /dev/urandom | base64)',

schema.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ create table threads (
2727
title varchar(64) not null,
2828
text text not null,
2929
score integer not null default 0,
30-
dead boolean not null default false
30+
hidden boolean not null default false
3131
);
3232

3333
create table comments (
@@ -39,7 +39,7 @@ create table comments (
3939
modify_time integer not null,
4040
text text not null,
4141
score integer not null default 0,
42-
dead boolean not null default false
42+
hidden boolean not null default false
4343
);
4444

4545
create table forums (

0 commit comments

Comments
 (0)