File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed
Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 11Changes
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+
4200.18.4
521------
622 * Fixed a bug when multiple tables inherit from the same mixin (thanks to
Original file line number Diff line number Diff line change 1- __VERSION__ = "0.18.4 "
1+ __VERSION__ = "0.19.0 "
You can’t perform that action at this time.
0 commit comments