mirror of https://github.com/usbharu/Hideout.git
11 lines
844 B
SQL
11 lines
844 B
SQL
insert into "actors" (id, name, domain, screen_name, description, inbox, outbox, url, public_key, private_key,
|
|
created_at, key_id, following, followers, instance, locked, following_count, followers_count,
|
|
posts_count, last_post_at)
|
|
VALUES (2, 'test-user2', 'example.com', 'Im test user.', 'THis account is test user.',
|
|
'https://example.com/users/test-user2/inbox',
|
|
'https://example.com/users/test-user2/outbox', 'https://example.com/users/test-user2',
|
|
'-----BEGIN PUBLIC KEY-----...-----END PUBLIC KEY-----',
|
|
'-----BEGIN PRIVATE KEY-----...-----END PRIVATE KEY-----', 12345678,
|
|
'https://example.com/users/test-user2#pubkey', 'https://example.com/users/test-user2/following',
|
|
'https://example.com/users/test-user2s/followers', 0, false, 0, 0, 0, null);
|