add bigint id to frequently used columns (close #3524) (#3669)

This commit is contained in:
Ashish Rao 2020-01-10 10:29:23 +05:30 committed by Rikin Kachhia
parent bda02f8192
commit 6a4d643c8d

View File

@ -10,6 +10,13 @@ const frequentlyUsedColumns = [
typeText: 'integer (auto-increment)',
primary: true,
},
{
name: 'id',
validFor: ['add'],
type: 'bigserial',
typeText: 'bigint (auto-increment)',
primary: true,
},
{
name: 'id',
validFor: ['add'],