Skip to content

Commit 6aa4917

Browse files
committed
bumped version
1 parent 8a486c3 commit 6aa4917

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

CHANGES

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
Changes
22
=======
33

4+
0.19.0
5+
------
6+
Changes to the ``BaseUser`` table - added a ``superuser``, and ``last_login``
7+
column. These are required for upgrades to Piccolo Admin.
8+
9+
If you're using migrations, then running ``piccolo migrations forwards all``
10+
should add these new columns for you.
11+
12+
If not using migrations, the ``BaseUser`` table can be upgraded using the
13+
following DDL statements:
14+
15+
.. code-block:: sql
16+
17+
ALTER TABLE piccolo_user ADD COLUMN "superuser" BOOLEAN NOT NULL DEFAULT false
18+
ALTER TABLE piccolo_user ADD COLUMN "last_login" TIMESTAMP DEFAULT null
19+
420
0.18.4
521
------
622
* Fixed a bug when multiple tables inherit from the same mixin (thanks to

piccolo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__VERSION__ = "0.18.4"
1+
__VERSION__ = "0.19.0"

0 commit comments

Comments
 (0)