schema

Achievements schema

  1. mysql> describe achievement_storage;
  2. +----------------+--------------+------+-----+---------+-------+
  3. | Field          | Type         | Null | Key | Default | Extra |
  4. +----------------+------------

Achievements schema

  1. mysql> describe achievement_storage;
  2. +----------------+--------------+------+-----+---------+-------+
  3. | Field          | Type         | Null | Key | Default | Extra |
  4. +----------------+------------

hook_install doesn't seem to work

  1. <?php
  2. /**
  3.  * Implemenation of hook_install()
  4.  */
  5. function tnt_user_import_install() {
  6.         // Create tables.
  7.         drupal_install_schema('tnt_user_import_schema');
  8. }
  9.  
  10. /**

schema doesn't install

  1. <?php
  2. // $Id: letters.install,v 1.2 2007/11/07 16:31:47 seanr Exp $
  3. function letters_install() {
  4.   drupal_install_schema('letters');
  5. }
  6.  
  7. function letters_uninstall() {

Fix for schema api &#039;char&#039; datatype not working ..

  1. <?php
  2. # vim: set filetype=php expandtab tabstop=2 shiftwidth=2 autoindent smartindent:
  3. function balance_install()
  4. {
  5.   drupal_install_schema('balance');
  6. }

schema api 'char' datatype not working ..

  1. <?php # vim: set filetype=php expandtab tabstop=2 shiftwidth=2 autoindent smartindent:
  2.  
  3. function balance_install() {
  4.   drupal_install_schema('balance');
  5. }
Syndicate content