diff --git a/_ressources/sql_skeleton.sql b/_ressources/sql_skeleton.sql index 34d568f..4ecfcee 100755 --- a/_ressources/sql_skeleton.sql +++ b/_ressources/sql_skeleton.sql @@ -90,6 +90,16 @@ ALTER TYPE public.user_rank_enum OWNER TO kabano; -- Name: content_comment_photos; Type: TABLE; Schema: public; Owner: kabano -- +CREATE SEQUENCE public.content_comment_photos_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE public.content_comment_photos_id_seq OWNER TO kabano; + CREATE TABLE public.content_comment_photos ( id integer NOT NULL, comment_id integer NOT NULL, diff --git a/public/medias/watermark.png b/public/medias/watermark.png new file mode 100644 index 0000000..fc801bc Binary files /dev/null and b/public/medias/watermark.png differ