We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9c7acd commit 1c42d6aCopy full SHA for 1c42d6a
CHANGES
@@ -1,6 +1,26 @@
1
Changes
2
=======
3
4
+0.42.0
5
+------
6
+You can now use ``all_columns`` at the root. For example:
7
+
8
+.. code-block:: python
9
10
+ await Band.select(
11
+ Band.all_columns(),
12
+ Band.manager.all_columns()
13
+ ).run()
14
15
+You can also exclude certain columns if you like:
16
17
18
19
20
+ Band.all_columns(exclude=[Band.id]),
21
+ Band.manager.all_columns(exclude=[Band.manager.id])
22
23
24
0.41.1
25
------
26
Fix a regression where if multiple tables are created in a single migration
piccolo/__init__.py
@@ -1 +1 @@
-__VERSION__ = "0.41.1"
+__VERSION__ = "0.42.0"
0 commit comments