···54 title: string, bytes<=640, chars<=64
55 topic?: string, bytes<=2560, chars<=256
56 createdAt: string
57- host: handle
5859 sub: record
60 channelUri: uri
6162 channelView?: def
63 uri: uri
64- host: handle
65 creator: org.xcvr.actor.profileView
66 title: string, bytes<=640, chars<=64
67 topic?: string, bytes<=2560, chars<=256
···88 signet: record
89 channelURI: uri
90 lrcID: int, [0 4294967295]
91- author: string
092 startedAt?: date
9394 media: record
···54 title: string, bytes<=640, chars<=64
55 topic?: string, bytes<=2560, chars<=256
56 createdAt: string
57+ host: did
5859 sub: record
60 channelUri: uri
6162 channelView?: def
63 uri: uri
64+ host: did
65 creator: org.xcvr.actor.profileView
66 title: string, bytes<=640, chars<=64
67 topic?: string, bytes<=2560, chars<=256
···88 signet: record
89 channelURI: uri
90 lrcID: int, [0 4294967295]
91+ author: did
92+ authorHandle?: string
93 startedAt?: date
9495 media: record
+3
migrations/007_addauthor.down.sql
···000
···1+UPDATE signets SET author_handle = '' WHERE author_handle IS NULL;
2+ALTER TABLE signets ALTER COLUMN author_handle SET NOT NULL;
3+ALTER TABLE signets DROP COLUMN author;
+2
migrations/007_addauthor.up.sql
···00
···1+ALTER TABLE signets ADD COLUMN author TEXT NOT NULL;
2+ALTER TABLE signets ALTER COLUMN author_handle DROP NOT NULL;
+1
migrations/008_updatexcvrdid.down.sql
···0
···1+UPDATE did_handles SET did = 'did:plc:mqt7hthieqzpa3mwqwggbqei' WHERE handle = 'xcvr.org';
+1
migrations/008_updatexcvrdid.up.sql
···0
···1+UPDATE did_handles SET did = 'did:web:xcvr.org' WHERE handle = 'xcvr.org';