You could use:
Code:
Sub Add_Rows_Table()
Application.ScreenUpdating = False
Dim Tbl As Table, Rng As Range
For Each Tbl In ActiveDocument.Tables
Tbl.Cell(1, 1).Range.Select
Selection.InsertRowsAbove 1
Next Tbl
Application.ScreenUpdating = True
End Sub