Skip to content

Commit

Permalink
Forum-Tabelle brauchte noch ein slug
Browse files Browse the repository at this point in the history
  • Loading branch information
commel committed Sep 30, 2023
1 parent 74202e8 commit 4eaf7fa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion doc/db2/01_schema/08_forum.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ create table if not exists forums (
id int primary key default nextval('hibernate_sequence'),
title varchar(255) not null unique,
description varchar(1024),
weight int default 0
weight int default 0,
slug varchar(255) not null
);

create table if not exists forum_threads (
Expand Down

0 comments on commit 4eaf7fa

Please sign in to comment.