Piszę nowy moduł Drupala 7 (Drupal 7.10, Data 7.x-2.0-rc1 zainstalowany, Schemat 7.x-1.0-beta3 zainstalowany) zdefiniowałem tabelę w mymodule. zainstalować:Typ datetime w schemacie Drupala 7
$schema['museums_tickets']= array(
'fields' => array(
'nid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'day' => array(
'type' => 'datetime',
'mysql_type' => 'DATETIME',
'not null' => TRUE,
),
'tickets' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'ticket_code' => array(
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
),
),
'primary key' => array('nid', 'day','ticket_code'),
);
ale uzyskać następujące błędy:
Field museums_tickets.day: no Schema type for mysql type datetime.
museums_tickets.day: no type for Schema type datetime.
Field museums_tickets.day: no Schema type for type datetime.
To samo dotyczy przypadku korzystania
'type' => 'datetime:normal',
Chciałbym wiedzieć, jak rozwiązać ten problem. Nie chcę przechowywać dat jako znacznika czasu, ponieważ inna osoba napisała dużo kodu i oczywiście nie chcę przepisywać wszystkich. Już obejrzałem drupal 7 custom schema error datetime, ale odpowiedź nie działa. Może robię coś nie tak, ale nie wiem co.
Z góry dziękuję.
Próbowałem go w nowym module, ale nie utworzyć tabelę, gdy go zainstalować. – user1014351
Czy masz jakieś błędy? – Clive
Próbowałem go w drupal 7.17, ale dostałem błąd: brak typu schematu dla datetime typu mysql. – sumanchalki