Skip to content

Instantly share code, notes, and snippets.

@Ibochkarev
Created September 4, 2015 06:18
Show Gist options
  • Save Ibochkarev/51da498c8bc4d01efdad to your computer and use it in GitHub Desktop.
Save Ibochkarev/51da498c8bc4d01efdad to your computer and use it in GitHub Desktop.
msproductdata liquidity minishop2
<!-- core/components/minishop2/plugins/liquidity/msproductdata.map.inc.php -->
<?php
return array(
'fields' => array(
'liquidity' => NULL
)
, 'fieldMeta' => array(
'liquidity' => array(
'dbtype' => 'varchar',
'precision' => '255',
'phptype' => 'json',
'null' => true,
'default' => NULL
)
)
, 'indexes' => array(
'liquidity' => array(
'alias' => 'liquidity',
'primary' => false,
'unique' => false,
'type' => 'BTREE',
'columns' => array(
'action' => array(
'length' => '',
'collation' => 'A',
'null' => false
)
)
)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment