PostgreSQL データベースで実行されている Sails アプリケーションに問題があります。11 桁の整数を挿入する必要がありましたが、モデルを微調整する簡単な方法が見つかりません。
編集 1 はモデルの例です:
/**
* Phone.js
*
* @docs :: http://sailsjs.org/#!documentation/models
*/
module.exports = {
attributes: {
number: {
type: 'integer',
required: true,
minLength: 9
}
}
};
Postgre でその整数を BIGINT に変更する方法 (ORM を使用) はありERROR: integer out of rage
ますか?