summaryrefslogtreecommitdiffstats
path: root/models/migrations/fixtures/Test_RemoveSSHSignaturesFromReleaseNotes/release.yml
blob: caa0b40b8ab8a304b33566d11ce7bfd41a2dcef0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# type Release struct {
#   ID   int64  `xorm:"pk autoincr"`
#   Note string `xorm:"TEXT"`
# }
-
  id: 1
  note: |
    -----BEGIN SSH SIGNATURE-----
    some signature
    -----END SSH SIGNATURE-----

-
  id: 2
  note: |
    A message.
    -----BEGIN SSH SIGNATURE-----
    some signature
    -----END SSH SIGNATURE-----

-
  id: 3
  note: "no signature present here"