1
0
mirror of synced 2025-03-05 04:13:20 +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"> <code type="php">
'sometime' = array( 'sometime' = array(
'type' = 'time', 'type' => 'time',
'default' = '12:34:05', 'default' => '12:34:05',
'notnull' = true, 'notnull' => true,
), ),
</code> </code>
@ -43,8 +43,8 @@ Using the above example, we can also explore the default field operator. Default
<code type="php"> <code type="php">
'sometext' = array( 'sometext' = array(
'type' = 'text', 'type' => 'text',
'length' = 12, 'length' => 12,
), ),
</code> </code>