`thread_id` in `posts` table should not autoincrement

This commit is contained in:
ngoomie 2023-05-07 19:15:24 -06:00
parent e12849508e
commit c4f02ec4b6
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ __PACKAGE__->add_columns(
is_nullable => 0, },
thread_id => {
data_type => 'integer',
is_auto_increment => 1,
is_auto_increment => 0,
is_nullable => 0, },
post_date => {
data_type => 'integer',