Can disable couple photos #5

Merged
pierre merged 7 commits from disable_couple_photos into master 2023-08-26 14:55:24 +00:00
3 changed files with 5 additions and 0 deletions
Showing only changes of commit 914c626bfb - Show all commits

View File

@ -0,0 +1,2 @@
-- This file should undo anything in `up.sql`
alter table families drop column disable_couple_photos;

View File

@ -0,0 +1,2 @@
-- Your SQL goes here
ALTER TABLE families add column disable_couple_photos boolean not null default false;

View File

@ -25,6 +25,7 @@ diesel::table! {
time_create -> Int8, time_create -> Int8,
name -> Varchar, name -> Varchar,
invitation_code -> Varchar, invitation_code -> Varchar,
disable_couple_photos -> Bool,
} }
} }