⧼vector-jumptocontent⧽

Bigint field: Difference between revisions

From EPrints Documentation
Required Phrases: No additional phrases
Added standard sections some with content. Unhide ToC
Line 1: Line 1:
{{fieldtypes}}
{{fieldtypes}}
__NOTOC__
== Inheritance ==
== Inheritance ==


Line 26: Line 25:


  fieldname BIGINT(20)
  fieldname BIGINT(20)
== API ==
''To be added''
== Examples ==
A basic example.
{
    name => 'population',
    type => 'bigint',
}
Restrict number of digits can be added to this field in the wokflow.
{
    name => 'hesa_id',
    type => 'bigint',
    digits => 13,
}

Revision as of 08:28, 20 March 2023

Inheritance

Description

This field represents an integer whose value may be too big to to store in a standard database integer field.

Properties

name default description
digits n/a This property is taken from the repository configuration.

Required Phrases

No additional phrases.

Database

Counter fields are stored in the database as

fieldname BIGINT(20)

API

To be added

Examples

A basic example.

{
    name => 'population',
    type => 'bigint',
}

Restrict number of digits can be added to this field in the wokflow.

{
    name => 'hesa_id',
    type => 'bigint',
    digits => 13,
}