README.md in airtable2-0.2.0 vs README.md in airtable2-0.2.1

- old
+ new

@@ -39,16 +39,22 @@ ```ruby @tables = @base.tables ``` -and create a new table +and a table's records, so you can navigate the has_many chain the way God intended: ```ruby -@table = @base.create_table({ name: 'Names', description: 'A list of names', fields: [{ name: 'name', type: 'singleLineText' }] }) +@client.bases.first.tables.first.records.first ``` ### Manipulating Tables + +Create a new table with: + +```ruby +@table = @base.create_table({ name: 'Names', description: 'A list of names', fields: [{ name: 'name', type: 'singleLineText' }] }) +``` You can update at a table's metadata with the `update` method: ```ruby @table.update({ description: 'Updated description' })