mirror of
https://github.com/perstarkse/minne.git
synced 2026-04-26 02:38:31 +02:00
9 lines
316 B
Plaintext
9 lines
316 B
Plaintext
DEFINE FIELD IF NOT EXISTS context ON text_content TYPE option<string>;
|
|
DEFINE FIELD OVERWRITE instructions ON text_content TYPE option<string>;
|
|
|
|
UPDATE text_content SET context = instructions WHERE instructions IS NOT NONE;
|
|
|
|
UPDATE text_content UNSET instructions;
|
|
|
|
REMOVE FIELD instructions ON TABLE text_content;
|