mirror of
https://github.com/catdevnull/preciazo.git
synced 2024-11-22 06:16:18 +00:00
7 lines
331 B
SQL
7 lines
331 B
SQL
-- Custom SQL migration file, put you code below! --
|
|
|
|
-- https://sqlite.org/fts5.html#external_content_and_contentless_tables
|
|
-- Triggers to keep the FTS index up to date.
|
|
CREATE TRIGGER precios_fts_ai AFTER INSERT ON precios BEGIN
|
|
INSERT INTO precios_fts(rowid, ean, url, name) VALUES (new.id, new.ean, new.url, new.name);
|
|
END;
|