CREATE TABLE drive_tag_actions (
    action_id text PRIMARY KEY,
    action_description text,
    action_meta text,
    action_type text NOT NULL,
    enabled boolean default true,
    deprecated boolean default false,
    landing text,
    id BIGSERIAL,
    action_revision BIGSERIAL NOT NULL,
    parent text
);

