Add boolean for admin
This commit is contained in:
parent
28c3e2df17
commit
4527219d91
|
@ -61,7 +61,7 @@ sub startup($self) {
|
|||
# Finish configuring some things
|
||||
$self->secrets($self->config->{'secrets'}) || die $@;
|
||||
|
||||
$self->pg->migrations->from_dir('migrations')->migrate(10);
|
||||
$self->pg->migrations->from_dir('migrations')->migrate(11);
|
||||
|
||||
if (my $threads_per_page = $self->config->{'threads_per_page'}) {
|
||||
$self->thread->per_page($threads_per_page)
|
||||
|
|
2
migrations/11/down.sql
Normal file
2
migrations/11/down.sql
Normal file
|
@ -0,0 +1,2 @@
|
|||
ALTER TABLE moderators
|
||||
DROP COLUMN admin_status;
|
2
migrations/11/up.sql
Normal file
2
migrations/11/up.sql
Normal file
|
@ -0,0 +1,2 @@
|
|||
ALTER TABLE moderators
|
||||
ADD admin_status BOOLEAN NOT NULL DEFAULT FALSE;
|
Loading…
Reference in a new issue