This commit is contained in:
Freya Murphy 2023-09-24 00:47:22 -04:00
parent edbbdf72c7
commit be461e9c2a
No known key found for this signature in database
GPG key ID: 988032A5638EE799
5 changed files with 9 additions and 9 deletions

View file

@ -307,8 +307,8 @@ impl Check for SendMessageRequest {
Self::assert_length(
&self.content,
1,
500,
"Messages must be between 1-500 length"
5000,
"Messages must be between 1-5000 length"
)?;
Ok(())
}

View file

@ -46,8 +46,8 @@ impl Check for PostCreateRequest {
Self::assert_length(
&self.content,
1,
500,
"Comments must be between 1-500 characters long",
5000,
"Posts must be between 1-5000 characters long",
)?;
Ok(())
}
@ -246,8 +246,8 @@ impl Check for PostCommentRequest {
Self::assert_length(
&self.content,
1,
255,
"Comments must be between 1-255 characters long",
2000,
"Comments must be between 1-2000 characters long",
)?;
Ok(())
}

View file

@ -35,7 +35,7 @@ impl Database {
user_id INTEGER NOT NULL,
room_id INTEGER NOT NULL,
date INTEGER NOT NULL,
content VARCHAR(500) NOT NULL,
content VARCHAR(5000) NOT NULL,
FOREIGN KEY(user_id) REFERENCES users(user_id),
FOREIGN KEY(room_id) REFERENCES chat_rooms(room_id)
);

View file

@ -15,7 +15,7 @@ impl Database {
user_id INTEGER NOT NULL,
post_id INTEGER NOT NULL,
date INTEGER NOT NULL,
content VARCHAR(255) NOT NULL,
content VARCHAR(2000) NOT NULL,
FOREIGN KEY(user_id) REFERENCES users(user_id),
FOREIGN KEY(post_id) REFERENCES posts(post_id)
);

View file

@ -13,7 +13,7 @@ impl Database {
CREATE TABLE IF NOT EXISTS posts (
post_id INTEGER PRIMARY KEY AUTOINCREMENT,
user_id INTEGER NOT NULL,
content VARCHAR(500) NOT NULL,
content VARCHAR(5000) NOT NULL,
date INTEGER NOT NULL,
FOREIGN KEY(user_id) REFERENCES users(user_id)
);