about summary refs log tree commit diff
path: root/migrations
diff options
context:
space:
mode:
Diffstat (limited to 'migrations')
-rw-r--r--migrations/auth/20221108_01_CoxYh-create-the-groups-table.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/migrations/auth/20221108_01_CoxYh-create-the-groups-table.py b/migrations/auth/20221108_01_CoxYh-create-the-groups-table.py
index 06491dd..29f92d4 100644
--- a/migrations/auth/20221108_01_CoxYh-create-the-groups-table.py
+++ b/migrations/auth/20221108_01_CoxYh-create-the-groups-table.py
@@ -11,7 +11,8 @@ steps = [
         """
         CREATE TABLE IF NOT EXISTS groups(
             group_id TEXT PRIMARY KEY NOT NULL,
-            group_name TEXT NOT NULL
+            group_name TEXT NOT NULL,
+            group_metadata TEXT
         ) WITHOUT ROWID
         """,
         "DROP TABLE IF EXISTS groups")