target platform supports IF NOT EXISTS / IF EXISTS for tables.
(self)
| 99 | |
| 100 | @property |
| 101 | def table_ddl_if_exists(self): |
| 102 | """target platform supports IF NOT EXISTS / IF EXISTS for tables.""" |
| 103 | |
| 104 | return only_on(["postgresql", "mysql", "mariadb", "sqlite"]) |
| 105 | |
| 106 | @property |
| 107 | def create_table_as(self): |