File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ CREATE TABLE users (
13
13
location VARCHAR (512 ),
14
14
profile_image_url VARCHAR (255 ),
15
15
website_url VARCHAR (255 ),
16
- about_me TEXT ,
16
+ about_me MEDIUMTEXT ,
17
17
creation_date TIMESTAMP (3 ) NOT NULL ,
18
18
last_access_date TIMESTAMP (3 ) NOT NULL
19
19
);
@@ -35,7 +35,7 @@ CREATE TABLE posts (
35
35
title VARCHAR (512 ),
36
36
tags VARCHAR (512 ),
37
37
content_license VARCHAR (64 ) NOT NULL ,
38
- body TEXT ,
38
+ body MEDIUMTEXT ,
39
39
favorite_count INTEGER ,
40
40
creation_date TIMESTAMP (3 ) NOT NULL ,
41
41
community_owned_date TIMESTAMP (3 ),
@@ -63,8 +63,8 @@ CREATE TABLE post_history (
63
63
user_display_name VARCHAR (64 ),
64
64
content_license VARCHAR (64 ),
65
65
revision_guid uuid,
66
- text TEXT ,
67
- comment TEXT ,
66
+ text MEDIUMTEXT ,
67
+ comment MEDIUMTEXT ,
68
68
creation_date TIMESTAMP (3 ) NOT NULL
69
69
);
70
70
@@ -76,7 +76,7 @@ CREATE TABLE comments (
76
76
score TINYINT NOT NULL ,
77
77
content_license VARCHAR (64 ) NOT NULL ,
78
78
user_display_name VARCHAR (64 ),
79
- text TEXT ,
79
+ text MEDIUMTEXT ,
80
80
creation_date TIMESTAMP (3 ) NOT NULL
81
81
);
82
82
You can’t perform that action at this time.
0 commit comments