1192
if (field.type() == Table::Field::TIMESTAMP)
1193
if (field.timestamp_options().has_auto_updates() &&
1194
field.timestamp_options().auto_updates())
1195
destination.append(" ON UPDATE CURRENT_TIMESTAMP", 28);
1192
if (field.has_options() && field.options().has_update_value())
1194
destination.append(" ON UPDATE ", 11);
1195
destination.append(field.options().update_value());
1197
1198
if (field.has_comment())