github.com/jxgolibs/go-oauth2-server@v1.0.1/oauth/fixtures/scopes.yml (about)

     1  ---
     2  
     3  #--------#
     4  # Scopes #
     5  #--------#
     6  
     7  - table: 'oauth_scopes'
     8    pk:
     9      id: "1"
    10    fields:
    11      scope: 'read'
    12      is_default: true
    13      created_at: 'ON_INSERT_NOW()'
    14      updated_at: 'ON_UPDATE_NOW()'
    15  
    16  - table: 'oauth_scopes'
    17    pk:
    18      id: "2"
    19    fields:
    20      scope: 'read_write'
    21      is_default: false
    22      created_at: 'ON_INSERT_NOW()'
    23      updated_at: 'ON_UPDATE_NOW()'