17    with op.batch_alter_table(
'ps_transports') 
as batch_op:
 
   18        batch_op.add_column(sa.Column(
'tcp_keepalive_enable', sa.Boolean(), nullable=
True))
 
   19        batch_op.add_column(sa.Column(
'tcp_keepalive_idle_time', sa.Integer(), nullable=
True))
 
   20        batch_op.add_column(sa.Column(
'tcp_keepalive_interval_time', sa.Integer(), nullable=
True))
 
   21        batch_op.add_column(sa.Column(
'tcp_keepalive_probe_count', sa.Integer(), nullable=
True))