Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Use TEXT rather than VARCHAR
Browse files Browse the repository at this point in the history
While we're changing anyway
  • Loading branch information
dbkr committed Feb 17, 2017
1 parent b401753 commit 4aa2950
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions synapse/storage/schema/delta/40/pushers.sql
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ CREATE TABLE IF NOT EXISTS pushers2 (
id BIGINT PRIMARY KEY,
user_name TEXT NOT NULL,
access_token BIGINT DEFAULT NULL,
profile_tag VARCHAR(32) NOT NULL,
kind VARCHAR(8) NOT NULL,
app_id VARCHAR(64) NOT NULL,
app_display_name VARCHAR(64) NOT NULL,
device_display_name VARCHAR(128) NOT NULL,
profile_tag TEXT NOT NULL,
kind TEXT NOT NULL,
app_id TEXT NOT NULL,
app_display_name TEXT NOT NULL,
device_display_name TEXT NOT NULL,
pushkey TEXT NOT NULL,
ts BIGINT NOT NULL,
lang VARCHAR(16),
lang TEXT,
data TEXT,
last_stream_ordering INTEGER,
last_success BIGINT,
Expand Down

0 comments on commit 4aa2950

Please sign in to comment.