mirror of
https://github.com/d3vyce/sqlalchemy-pgview.git
synced 2026-03-02 03:10:46 +01:00
Initial commit
This commit is contained in:
9
docs/api/ddl/create-materialized-view.md
Normal file
9
docs/api/ddl/create-materialized-view.md
Normal file
@@ -0,0 +1,9 @@
|
||||
# `CreateMaterializedView` class
|
||||
|
||||
DDL element to create a PostgreSQL materialized view.
|
||||
|
||||
```python
|
||||
from sqlalchemy_pgview import CreateMaterializedView
|
||||
```
|
||||
|
||||
::: sqlalchemy_pgview.CreateMaterializedView
|
||||
9
docs/api/ddl/create-view.md
Normal file
9
docs/api/ddl/create-view.md
Normal file
@@ -0,0 +1,9 @@
|
||||
# `CreateView` class
|
||||
|
||||
DDL element to create a PostgreSQL view.
|
||||
|
||||
```python
|
||||
from sqlalchemy_pgview import CreateView
|
||||
```
|
||||
|
||||
::: sqlalchemy_pgview.CreateView
|
||||
12
docs/api/ddl/drop-materialized-view.md
Normal file
12
docs/api/ddl/drop-materialized-view.md
Normal file
@@ -0,0 +1,12 @@
|
||||
# `DropMaterializedView` class
|
||||
|
||||
DDL element to drop a PostgreSQL materialized view.
|
||||
|
||||
```python
|
||||
from sqlalchemy_pgview import DropMaterializedView
|
||||
```
|
||||
|
||||
::: sqlalchemy_pgview.DropMaterializedView
|
||||
options:
|
||||
members:
|
||||
- fullname
|
||||
12
docs/api/ddl/drop-view.md
Normal file
12
docs/api/ddl/drop-view.md
Normal file
@@ -0,0 +1,12 @@
|
||||
# `DropView` class
|
||||
|
||||
DDL element to drop a PostgreSQL view.
|
||||
|
||||
```python
|
||||
from sqlalchemy_pgview import DropView
|
||||
```
|
||||
|
||||
::: sqlalchemy_pgview.DropView
|
||||
options:
|
||||
members:
|
||||
- fullname
|
||||
12
docs/api/ddl/refresh-materialized-view.md
Normal file
12
docs/api/ddl/refresh-materialized-view.md
Normal file
@@ -0,0 +1,12 @@
|
||||
# `RefreshMaterializedView` class
|
||||
|
||||
DDL element to refresh a PostgreSQL materialized view.
|
||||
|
||||
```python
|
||||
from sqlalchemy_pgview import RefreshMaterializedView
|
||||
```
|
||||
|
||||
::: sqlalchemy_pgview.RefreshMaterializedView
|
||||
options:
|
||||
members:
|
||||
- fullname
|
||||
Reference in New Issue
Block a user