@@ -27,6 +27,7 @@ defmodule GoogleApi.DataMigration.V1.Model.ColumnEntity do
2727 * `charset` (*type:* `String.t`, *default:* `nil`) - Charset override - instead of table level charset.
2828 * `collation` (*type:* `String.t`, *default:* `nil`) - Collation override - instead of table level collation.
2929 * `comment` (*type:* `String.t`, *default:* `nil`) - Comment associated with the column.
30+ * `computed` (*type:* `boolean()`, *default:* `nil`) - Is the column a computed column.
3031 * `customFeatures` (*type:* `map()`, *default:* `nil`) - Custom engine specific features.
3132 * `dataType` (*type:* `String.t`, *default:* `nil`) - Column data type.
3233 * `defaultValue` (*type:* `String.t`, *default:* `nil`) - Default value of the column.
@@ -50,6 +51,7 @@ defmodule GoogleApi.DataMigration.V1.Model.ColumnEntity do
5051 :charset => String . t ( ) | nil ,
5152 :collation => String . t ( ) | nil ,
5253 :comment => String . t ( ) | nil ,
54+ :computed => boolean ( ) | nil ,
5355 :customFeatures => map ( ) | nil ,
5456 :dataType => String . t ( ) | nil ,
5557 :defaultValue => String . t ( ) | nil ,
@@ -70,6 +72,7 @@ defmodule GoogleApi.DataMigration.V1.Model.ColumnEntity do
7072 field ( :charset )
7173 field ( :collation )
7274 field ( :comment )
75+ field ( :computed )
7376 field ( :customFeatures , type: :map )
7477 field ( :dataType )
7578 field ( :defaultValue )
0 commit comments