cyberia/research/mimi/sql/migrations/000004_data.sql

-- +goose Up
-- +goose StatementBegin
INSERT INTO
    telegram_peer (chat_name, id, description)
VALUES
    (
        'cyber devops force',
        4588050232,
        'track of all jobs and projects statuses'
    ),
    (
        'rockets',
        2245058785,
        'chat of the head quoters'
    )
ON CONFLICT (id) DO NOTHING;

INSERT INTO
    github_repository (owner, name)
VALUES
    ('cyberia-to', 'cvland')
ON CONFLICT (owner, name) DO NOTHING;
-- +goose StatementEnd

-- +goose Down
-- +goose StatementBegin
DELETE FROM
    telegram_peer
WHERE
    id IN (4588050232, 2245058785);

DELETE FROM
    github_repository
WHERE
    owner = 'cyberia-to' AND name = 'cvland';
-- +goose StatementEnd

Graph