···5454 title: string, bytes<=640, chars<=64
5555 topic?: string, bytes<=2560, chars<=256
5656 createdAt: string
5757- host: handle
5757+ host: did
58585959 sub: record
6060 channelUri: uri
61616262 channelView?: def
6363 uri: uri
6464- host: handle
6464+ host: did
6565 creator: org.xcvr.actor.profileView
6666 title: string, bytes<=640, chars<=64
6767 topic?: string, bytes<=2560, chars<=256
···8888 signet: record
8989 channelURI: uri
9090 lrcID: int, [0 4294967295]
9191- author: string
9191+ author: did
9292+ authorHandle?: string
9293 startedAt?: date
93949495 media: record
+3
migrations/007_addauthor.down.sql
···11+UPDATE signets SET author_handle = '' WHERE author_handle IS NULL;
22+ALTER TABLE signets ALTER COLUMN author_handle SET NOT NULL;
33+ALTER TABLE signets DROP COLUMN author;
+2
migrations/007_addauthor.up.sql
···11+ALTER TABLE signets ADD COLUMN author TEXT NOT NULL;
22+ALTER TABLE signets ALTER COLUMN author_handle DROP NOT NULL;
+1
migrations/008_updatexcvrdid.down.sql
···11+UPDATE did_handles SET did = 'did:plc:mqt7hthieqzpa3mwqwggbqei' WHERE handle = 'xcvr.org';
+1
migrations/008_updatexcvrdid.up.sql
···11+UPDATE did_handles SET did = 'did:web:xcvr.org' WHERE handle = 'xcvr.org';