1
0
mirror of synced 2024-12-14 07:06:04 +03:00

trivial changes to docs

This commit is contained in:
pookey 2007-07-01 09:14:37 +00:00
parent 11f9940db2
commit 263e42416f

View File

@ -33,9 +33,9 @@ Building upon the above, we can say that the modifiers alter the field definitio
<code type="php">
'sometime' = array(
'type' = 'time',
'default' = '12:34:05',
'notnull' = true,
'type' => 'time',
'default' => '12:34:05',
'notnull' => true,
),
</code>
@ -43,8 +43,8 @@ Using the above example, we can also explore the default field operator. Default
<code type="php">
'sometext' = array(
'type' = 'text',
'length' = 12,
'type' => 'text',
'length' => 12,
),
</code>