88 89 90 91 92 93
# File 'lib/dbbrowser/connection.rb', line 88 def fetch_table_column_defs( name ) ### fix/todo: add reference to table_def @connection.columns( name ).map do |col| Column.new( col.name, col.sql_type, col.default, col.null ) end end