Maybe something like this:

Sub AddCol()
    Dim t As Table
    Set t = ActiveDocument.Tables(1)
    t.Columns.Add
    t.Columns.Autofit
End Sub