1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-24 17:42:40 +00:00
Arsse/sql/SQLite3/6.sql

11 lines
373 B
MySQL
Raw Normal View History

2019-12-06 23:21:05 +00:00
-- 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 = 7;
update arsse_meta set value = '7' where "key" = 'schema_version';