<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>Queries</key>
	<array>
		<string>ALTER TABLE APDBAdInstance ADD COLUMN schema;</string>
		<string>ALTER TABLE APDBAdInstance ADD COLUMN sessionId;</string>
		<string>ALTER TABLE APDBEvent ADD COLUMN expirationTime REAL;</string>
		<string>DROP INDEX idx_event_timestamp;</string>
		<string>CREATE INDEX idx_event_timestamp_expirationTime ON APDBEvent (timestamp, expirationTime);</string>
		<string>ALTER TABLE APDBAdInstance ADD COLUMN accountToken_new TEXT DEFAULT NULL;</string>
		<string>UPDATE APDBAdInstance SET accountToken_new = accountToken;</string>
		<string>ALTER TABLE APDBAdInstance DROP COLUMN accountToken;</string>
		<string>ALTER TABLE APDBAdInstance RENAME COLUMN accountToken_new TO accountToken;</string>
	</array>
</dict>
</plist>
