mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
parent
090a936e16
commit
db34297a74
1 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
/* String Column Sizes Information
|
||||||
|
* (From: https://github.com/TryGhost/Ghost/pull/7932)
|
||||||
|
*
|
||||||
|
* Small strings = length 50
|
||||||
|
* Medium strings = length 191
|
||||||
|
* Large strings = length 1000-2000
|
||||||
|
* Text = length 65535 (64 KiB)
|
||||||
|
* Long text = length 1,000,000,000
|
||||||
|
*/
|
||||||
module.exports = {
|
module.exports = {
|
||||||
posts: {
|
posts: {
|
||||||
id: {type: 'string', maxlength: 24, nullable: false, primary: true},
|
id: {type: 'string', maxlength: 24, nullable: false, primary: true},
|
||||||
|
|
Loading…
Reference in a new issue