(self)
| 1318 | |
| 1319 | @property |
| 1320 | def table(self): |
| 1321 | # If it doesn't exist, create the table from View.schema. |
| 1322 | if not self._table in self.db: |
| 1323 | self.setup() |
| 1324 | return self.db[self._table] |
| 1325 | |
| 1326 | def setup(self, overwrite=False): |
| 1327 | """ Creates the database table from View.schema, optionally overwriting the old table. |