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

     1  ---
     2  
     3  #-------#
     4  # Roles #
     5  #-------#
     6  
     7  - table: 'oauth_roles'
     8    pk:
     9      id: 'superuser'
    10    fields:
    11      name: 'Superuser'
    12      created_at: 'ON_INSERT_NOW()'
    13      updated_at: 'ON_UPDATE_NOW()'
    14  
    15  - table: 'oauth_roles'
    16    pk:
    17      id: 'user'
    18    fields:
    19      name: 'User'
    20      created_at: 'ON_INSERT_NOW()'
    21      updated_at: 'ON_UPDATE_NOW()'