Hii Nikola,
I think you need to UNION ALL otherwise you may not capture all the data; depends on what data is in the table (duplicates etc).
INSERT INTO new_table_name(Structure, Name, Active)
SELECT * FROM table_1
UNION ALL
SELECT * FROM table_2;
Hope this will solve your problem!