How do I list the two tables?

Hello,

I want a page that list the database contents of table1
and then list the database contents of table2

How do I reference both tables in my controller?

I tried @t1 = Table1.find(:all)
@t2 = Table2.find(:all)

Thanks

Frank