refactor(schema): Unify integer type usage across tables
This commit is contained in:
parent
ea68bac427
commit
3e5b1098c6
1 changed files with 2 additions and 2 deletions
|
@ -23,12 +23,12 @@ table! {
|
||||||
// Note: Manually inserted as print-schema does not add views.
|
// Note: Manually inserted as print-schema does not add views.
|
||||||
table! {
|
table! {
|
||||||
thread_index (thread_id){
|
thread_index (thread_id){
|
||||||
thread_id -> Integer,
|
thread_id -> Int4,
|
||||||
title -> Text,
|
title -> Text,
|
||||||
thread_author -> Text,
|
thread_author -> Text,
|
||||||
created -> Timestamptz,
|
created -> Timestamptz,
|
||||||
sticky -> Bool,
|
sticky -> Bool,
|
||||||
post_id -> Integer,
|
post_id -> Int4,
|
||||||
post_author -> Text,
|
post_author -> Text,
|
||||||
posted -> Timestamptz,
|
posted -> Timestamptz,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue