JuliaDB: How to find the number of rows and columns?

I loaded a JuliaDB table, but how do I find the number of rows and columns?

size doesn’t work.

Not sure if this is the recommended way, but seems to work:

length(t)
length(columns(t))