Advertisement
Guest User

Untitled

a guest
Sep 18th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 9.79 KB | None | 0 0
  1. AlkitoMembre:
  2.   connection: doctrine
  3.   tableName: alkito_membre
  4.   columns:
  5.     id:
  6.       type: integer(8)
  7.       fixed: false
  8.       unsigned: false
  9.       primary: true
  10.       autoincrement: true
  11.     user_id:
  12.       type: integer(4)
  13.       fixed: false
  14.       unsigned: false
  15.       primary: false
  16.       notnull: true
  17.       autoincrement: false
  18.  
  19.     pseudo:
  20.       type: string(255)
  21.       fixed: false
  22.       unsigned: false
  23.       primary: false
  24.       notnull: true
  25.       autoincrement: false
  26.  
  27.     [...]
  28.  
  29.     created_at:
  30.       type: timestamp(25)
  31.       fixed: false
  32.       unsigned: false
  33.       primary: false
  34.       notnull: true
  35.       autoincrement: false
  36.     updated_at:
  37.       type: timestamp(25)
  38.       fixed: false
  39.       unsigned: false
  40.       primary: false
  41.       notnull: true
  42.       autoincrement: false
  43.   relations:
  44.    [...]
  45.  
  46.     SfGuardUser:
  47.       local: user_id
  48.       foreign: id
  49.       type: one
  50.     SfGuardUser_5:
  51.       class: SfGuardUser
  52.       local: user_id
  53.       foreign: id
  54.       type: one
  55.  
  56.  
  57. SfGuardForgotPassword:
  58.   connection: doctrine
  59.   tableName: sf_guard_forgot_password
  60.   columns:
  61.     id:
  62.       type: integer(8)
  63.       fixed: false
  64.       unsigned: false
  65.       primary: true
  66.       autoincrement: true
  67.     user_id:
  68.       type: integer(4)
  69.       fixed: false
  70.       unsigned: false
  71.       primary: false
  72.       notnull: true
  73.       autoincrement: false
  74.     unique_key:
  75.       type: string(255)
  76.       fixed: false
  77.       unsigned: false
  78.       primary: false
  79.       notnull: false
  80.       autoincrement: false
  81.     expires_at:
  82.       type: timestamp(25)
  83.       fixed: false
  84.       unsigned: false
  85.       primary: false
  86.       notnull: true
  87.       autoincrement: false
  88.     created_at:
  89.       type: timestamp(25)
  90.       fixed: false
  91.       unsigned: false
  92.       primary: false
  93.       notnull: true
  94.       autoincrement: false
  95.     updated_at:
  96.       type: timestamp(25)
  97.       fixed: false
  98.       unsigned: false
  99.       primary: false
  100.       notnull: true
  101.       autoincrement: false
  102.   relations:
  103.     SfGuardUser:
  104.       local: user_id
  105.       foreign: id
  106.       type: one
  107. SfGuardGroup:
  108.   connection: doctrine
  109.   tableName: sf_guard_group
  110.   columns:
  111.     id:
  112.       type: integer(4)
  113.       fixed: false
  114.       unsigned: false
  115.       primary: true
  116.       autoincrement: true
  117.     name:
  118.       type: string(255)
  119.       fixed: false
  120.       unsigned: false
  121.       primary: false
  122.       notnull: false
  123.       autoincrement: false
  124.     description:
  125.       type: string()
  126.       fixed: false
  127.       unsigned: false
  128.       primary: false
  129.       notnull: false
  130.       autoincrement: false
  131.     created_at:
  132.       type: timestamp(25)
  133.       fixed: false
  134.       unsigned: false
  135.       primary: false
  136.       notnull: true
  137.       autoincrement: false
  138.     updated_at:
  139.       type: timestamp(25)
  140.       fixed: false
  141.       unsigned: false
  142.       primary: false
  143.       notnull: true
  144.       autoincrement: false
  145.   relations:
  146.     SfGuardGroupPermission:
  147.       local: id
  148.       foreign: group_id
  149.       type: many
  150.     SfGuardUserGroup:
  151.       local: id
  152.       foreign: group_id
  153.       type: many
  154. SfGuardGroupPermission:
  155.   connection: doctrine
  156.   tableName: sf_guard_group_permission
  157.   columns:
  158.     group_id:
  159.       type: integer(4)
  160.       fixed: false
  161.       unsigned: false
  162.       primary: true
  163.       autoincrement: false
  164.     permission_id:
  165.       type: integer(4)
  166.       fixed: false
  167.       unsigned: false
  168.       primary: true
  169.       autoincrement: false
  170.     created_at:
  171.       type: timestamp(25)
  172.       fixed: false
  173.       unsigned: false
  174.       primary: false
  175.       notnull: true
  176.       autoincrement: false
  177.     updated_at:
  178.       type: timestamp(25)
  179.       fixed: false
  180.       unsigned: false
  181.       primary: false
  182.       notnull: true
  183.       autoincrement: false
  184.   relations:
  185.     SfGuardGroup:
  186.       local: group_id
  187.       foreign: id
  188.       type: one
  189.     SfGuardPermission:
  190.       local: permission_id
  191.       foreign: id
  192.       type: one
  193. SfGuardPermission:
  194.   connection: doctrine
  195.   tableName: sf_guard_permission
  196.   columns:
  197.     id:
  198.       type: integer(4)
  199.       fixed: false
  200.       unsigned: false
  201.       primary: true
  202.       autoincrement: true
  203.     name:
  204.       type: string(255)
  205.       fixed: false
  206.       unsigned: false
  207.       primary: false
  208.       notnull: false
  209.       autoincrement: false
  210.     description:
  211.       type: string()
  212.       fixed: false
  213.       unsigned: false
  214.       primary: false
  215.       notnull: false
  216.       autoincrement: false
  217.     created_at:
  218.       type: timestamp(25)
  219.       fixed: false
  220.       unsigned: false
  221.       primary: false
  222.       notnull: true
  223.       autoincrement: false
  224.     updated_at:
  225.       type: timestamp(25)
  226.       fixed: false
  227.       unsigned: false
  228.       primary: false
  229.       notnull: true
  230.       autoincrement: false
  231.   relations:
  232.     SfGuardGroupPermission:
  233.       local: id
  234.       foreign: permission_id
  235.       type: many
  236.     SfGuardUserPermission:
  237.       local: id
  238.       foreign: permission_id
  239.       type: many
  240. SfGuardRememberKey:
  241.   connection: doctrine
  242.   tableName: sf_guard_remember_key
  243.   columns:
  244.     id:
  245.       type: integer(4)
  246.       fixed: false
  247.       unsigned: false
  248.       primary: true
  249.       autoincrement: true
  250.     user_id:
  251.       type: integer(4)
  252.       fixed: false
  253.       unsigned: false
  254.       primary: false
  255.       notnull: false
  256.       autoincrement: false
  257.     remember_key:
  258.       type: string(32)
  259.       fixed: false
  260.       unsigned: false
  261.       primary: false
  262.       notnull: false
  263.       autoincrement: false
  264.     ip_address:
  265.       type: string(50)
  266.       fixed: false
  267.       unsigned: false
  268.       primary: true
  269.       autoincrement: false
  270.     created_at:
  271.       type: timestamp(25)
  272.       fixed: false
  273.       unsigned: false
  274.       primary: false
  275.       notnull: true
  276.       autoincrement: false
  277.     updated_at:
  278.       type: timestamp(25)
  279.       fixed: false
  280.       unsigned: false
  281.       primary: false
  282.       notnull: true
  283.       autoincrement: false
  284.   relations:
  285.     SfGuardUser:
  286.       local: user_id
  287.       foreign: id
  288.       type: one
  289. SfGuardUser:
  290.   connection: doctrine
  291.   tableName: sf_guard_user
  292.   columns:
  293.     id:
  294.       type: integer(4)
  295.       fixed: false
  296.       unsigned: false
  297.       primary: true
  298.       autoincrement: true
  299.     username:
  300.       type: string(128)
  301.       fixed: false
  302.       unsigned: false
  303.       primary: false
  304.       notnull: true
  305.       autoincrement: false
  306.     algorithm:
  307.       type: string(128)
  308.       fixed: false
  309.       unsigned: false
  310.       primary: false
  311.       default: sha1
  312.       notnull: true
  313.       autoincrement: false
  314.     salt:
  315.       type: string(128)
  316.       fixed: false
  317.       unsigned: false
  318.       primary: false
  319.       notnull: false
  320.       autoincrement: false
  321.     password:
  322.       type: string(128)
  323.       fixed: false
  324.       unsigned: false
  325.       primary: false
  326.       notnull: false
  327.       autoincrement: false
  328.     is_active:
  329.       type: integer(1)
  330.       fixed: false
  331.       unsigned: false
  332.       primary: false
  333.       default: '1'
  334.       notnull: false
  335.       autoincrement: false
  336.     is_super_admin:
  337.       type: integer(1)
  338.       fixed: false
  339.       unsigned: false
  340.       primary: false
  341.       default: '0'
  342.       notnull: false
  343.       autoincrement: false
  344.     last_login:
  345.       type: timestamp(25)
  346.       fixed: false
  347.       unsigned: false
  348.       primary: false
  349.       notnull: false
  350.       autoincrement: false
  351.     created_at:
  352.       type: timestamp(25)
  353.       fixed: false
  354.       unsigned: false
  355.       primary: false
  356.       notnull: true
  357.       autoincrement: false
  358.     updated_at:
  359.       type: timestamp(25)
  360.       fixed: false
  361.       unsigned: false
  362.       primary: false
  363.       notnull: true
  364.       autoincrement: false
  365.   relations:
  366.     AlkitoMembre:
  367.       local: id
  368.       foreign: user_id
  369.       type: many
  370.     AlkitoMembre_5:
  371.       class: AlkitoMembre
  372.       local: id
  373.       foreign: user_id
  374.       type: many
  375.     SfGuardForgotPassword:
  376.       local: id
  377.       foreign: user_id
  378.       type: many
  379.     SfGuardRememberKey:
  380.       local: id
  381.       foreign: user_id
  382.       type: many
  383.     SfGuardUserGroup:
  384.       local: id
  385.       foreign: user_id
  386.       type: many
  387.     SfGuardUserPermission:
  388.       local: id
  389.       foreign: user_id
  390.       type: many
  391. SfGuardUserGroup:
  392.   connection: doctrine
  393.   tableName: sf_guard_user_group
  394.   columns:
  395.     user_id:
  396.       type: integer(4)
  397.       fixed: false
  398.       unsigned: false
  399.       primary: true
  400.       autoincrement: false
  401.     group_id:
  402.       type: integer(4)
  403.       fixed: false
  404.       unsigned: false
  405.       primary: true
  406.       autoincrement: false
  407.     created_at:
  408.       type: timestamp(25)
  409.       fixed: false
  410.       unsigned: false
  411.       primary: false
  412.       notnull: true
  413.       autoincrement: false
  414.     updated_at:
  415.       type: timestamp(25)
  416.       fixed: false
  417.       unsigned: false
  418.       primary: false
  419.       notnull: true
  420.       autoincrement: false
  421.   relations:
  422.     SfGuardGroup:
  423.       local: group_id
  424.       foreign: id
  425.       type: one
  426.     SfGuardUser:
  427.       local: user_id
  428.       foreign: id
  429.       type: one
  430. SfGuardUserPermission:
  431.   connection: doctrine
  432.   tableName: sf_guard_user_permission
  433.   columns:
  434.     user_id:
  435.       type: integer(4)
  436.       fixed: false
  437.       unsigned: false
  438.       primary: true
  439.       autoincrement: false
  440.     permission_id:
  441.       type: integer(4)
  442.       fixed: false
  443.       unsigned: false
  444.       primary: true
  445.       autoincrement: false
  446.     created_at:
  447.       type: timestamp(25)
  448.       fixed: false
  449.       unsigned: false
  450.       primary: false
  451.       notnull: true
  452.       autoincrement: false
  453.     updated_at:
  454.       type: timestamp(25)
  455.       fixed: false
  456.       unsigned: false
  457.       primary: false
  458.       notnull: true
  459.       autoincrement: false
  460.   relations:
  461.     SfGuardPermission:
  462.       local: permission_id
  463.       foreign: id
  464.       type: one
  465.     SfGuardUser:
  466.       local: user_id
  467.       foreign: id
  468.       type: one
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement