1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-24 09:32:40 +00:00
Arsse/sql/SQLite3/5.sql
2019-09-12 21:19:26 -04:00

10 lines
373 B
SQL

-- SPDX-License-Identifier: MIT
-- Copyright 2017 J. King, Dustin Wilson et al.
-- See LICENSE and AUTHORS files for details
-- add a column to the token table to hold arbitrary class-specific data
alter table arsse_tokens add column data text default null;
-- set version marker
pragma user_version = 6;
update arsse_meta set value = '6' where "key" = 'schema_version';