schema.yml 583 Bytes
Newer Older
Игорь's avatar
init    
Игорь committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
csSetting:
  actAs: 
    Sluggable:
      fields:   [name]
      builder:  [csSettings, settingize]
  columns:
    id:
      type: integer(4)
      primary: true
      autoincrement: true
    name:
      type:     string(255)
      unique:   true
      notnull:  true
    type:
      type: string(255)
      notnull:  true
      default:  input
    widget_options:
      type: clob
    value:
      type: clob
    setting_group:
      type: string(255)
      default:  ''
    setting_default:
      type: clob
      default:  ''
    variables:
      type: clob
      default:  ''