Autowert

Wie erstelle ich mit VBA eine Tabelle die einen Autowert hat?
Das Feld action_type_id sollte einen Autowert (increment) aufweisen.

CREATE TABLE wm_action_type ( action_type_id LONG NOT NULL,
name CHAR(50) NOT NULL,
descn CHAR(255) NULL);

CREATE TABLE wm\_action\_type ( action\_type\_id COUNTER NOT NULL,
name CHAR(50) NOT NULL,
descn CHAR(255) NULL);