You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
395 B
10 lines
395 B
-- Run this in Supabase SQL Editor if "Update" never appears on community copies
|
|
-- (or you see errors about version / copied_from_version).
|
|
-- Uses schema omotomo (match your app's db.schema in src/lib/supabase.js).
|
|
|
|
ALTER TABLE omotomo.decks
|
|
ADD COLUMN IF NOT EXISTS version integer NOT NULL DEFAULT 1;
|
|
|
|
ALTER TABLE omotomo.decks
|
|
ADD COLUMN IF NOT EXISTS copied_from_version integer NULL;
|