diff options
author | Nathan Ringo <nathan@remexre.com> | 2024-01-19 22:31:41 -0600 |
---|---|---|
committer | Nathan Ringo <nathan@remexre.com> | 2024-01-19 22:31:41 -0600 |
commit | e9ce0f5ca752f044716c17384bd7ef2486d74805 (patch) | |
tree | e848073b6e939884bcc607f7182446311122d41e /migrations | |
parent | d9e3caab5ed77eff9263c416b457f110b1f29ace (diff) |
Fix interactions with button responses.
Diffstat (limited to 'migrations')
-rw-r--r-- | migrations/20240118234708_init_discocaml.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/migrations/20240118234708_init_discocaml.sql b/migrations/20240118234708_init_discocaml.sql index adce26a..635be48 100644 --- a/migrations/20240118234708_init_discocaml.sql +++ b/migrations/20240118234708_init_discocaml.sql @@ -2,6 +2,6 @@ -- time. If we ever get theorem proving support, this'll probably need to be -- extended... That, or we just have another table for the context? CREATE TABLE IF NOT EXISTS discocaml_exprs - ( interaction_id INTEGER PRIMARY KEY - , expr TEXT NOT NULL + ( rowid INTEGER PRIMARY KEY + , expr TEXT NOT NULL ); |