相关疑难解决方法(0)

drupal 7自定义架构错误datetime

我有以下架构(从自定义模块中的架构模块(7.x-1.0-beta3)的现有表生成.

function myproject_entities_schema() {

// ---------------------------------------------------------------------------------
// MESSAGE
// ---------------------------------------------------------------------------------
$schema['myproject_entity_message'] = array(
    'description' => 'The base table for myproject message instances',
    'fields' => array(
        'id' => array(
            'description' => 'The primary identifier for a message instance',
            'type' => 'serial',
            'unsigned' => TRUE,
            'not null' => TRUE,
        ),
        'weekendday' => array(
            'description' => 'Whether this message gets send on a weekendday(1) or on a workday(0)',
            'type' => 'int',
            'size' => 'tiny',
            'not null' => TRUE,
            'default' => 0, …
Run Code Online (Sandbox Code Playgroud)

php mysql drupal drupal-7 drupal-schema

4
推荐指数
1
解决办法
4509
查看次数

标签 统计

drupal ×1

drupal-7 ×1

drupal-schema ×1

mysql ×1

php ×1