Annotation Type TimeZoneColumn

    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      String columnDefinition
      (Optional) The SQL fragment that is used when generating the DDL for the column.
      boolean insertable
      (Optional) Whether the column is included in SQL INSERT statements generated by the persistence provider.
      String name
      (Optional) The name of the column.
      String table
      (Optional) The name of the table that contains the column.
      boolean updatable
      (Optional) Whether the column is included in SQL UPDATE statements generated by the persistence provider.
    • Element Detail

      • name

        String name
        (Optional) The name of the column. Defaults to the property or field name, suffixed by _tz.
        Default:
        ""
      • insertable

        boolean insertable
        (Optional) Whether the column is included in SQL INSERT statements generated by the persistence provider.
        Default:
        true
      • updatable

        boolean updatable
        (Optional) Whether the column is included in SQL UPDATE statements generated by the persistence provider.
        Default:
        true
      • columnDefinition

        String columnDefinition
        (Optional) The SQL fragment that is used when generating the DDL for the column.

        Defaults to the generated SQL to create a column of the inferred type.

        Default:
        ""
      • table

        String table
        (Optional) The name of the table that contains the column. If absent the column is assumed to be in the primary table.
        Default:
        ""