DrupalBin
Submit Code
About
Recent Posts
Code
Fix for Fix for Code
Fix for Code
Code
Node type whitelist
an axe coach accessories
coach purses married
Fix for de las ghd alturas
de las ghd alturas
Code
more
User login
Log in using OpenID:
What is OpenID?
Username:
*
Password:
*
Log in using OpenID
Cancel OpenID login
Create new account
Request new password
Tags
CCK
drupal
fapi
jquery
menu
module
php
simpletest
taxonomy
test
theme
views
more tags
Home
schema
Install file schema isn't loading
August 27, 2011 - 5:12pm — Anonymous
<?php
function
cvmadmission_review_install
(
)
{
drupal_install_schema
(
'cvmadmission_review'
)
;
}
function
cvmadmission_review_uninstall
(
)
{
drupal_uninstall_schema
(
'cvmadmission_review'
)
;
install file
schema
Read more
Is this the right way to schema
May 17, 2010 - 3:53pm — Anonymous
<?php
/**
* Implementation of hook_install().
*/
function
another_form_install
(
)
{
drupal_install_schema
(
'another_form'
)
;
}
/**
* Implementation of hook_uninstall().
* Comment i
schema
Read more
Achievements schema
February 2, 2010 - 7:56pm —
mikey_p
mysql> describe achievement_storage;
+----------------+--------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------------+------------
achievements
schema
Read more
Achievements schema
February 2, 2010 - 7:56pm —
mikey_p
mysql> describe achievement_storage;
+----------------+--------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------------+------------
achievements
schema
Read more
hook_install doesn't seem to work
May 18, 2009 - 4:00pm — Anonymous
<?php
/**
* Implemenation of hook_install()
*/
function
tnt_user_import_install
(
)
{
// Create tables.
drupal_install_schema
(
'tnt_user_import_schema'
)
;
}
/**
hook
hook_install
schema
Read more
schema doesn't install
April 30, 2008 - 8:18pm — Anonymous
<?php
// $Id: letters.install,v 1.2 2007/11/07 16:31:47 seanr Exp $
function
letters_install
(
)
{
drupal_install_schema
(
'letters'
)
;
}
function
letters_uninstall
(
)
{
Drupal 6
schema
Read more
Fix for schema api 'char' datatype not working ..
March 16, 2008 - 10:39am — Anonymous
<?php
# vim: set filetype=php expandtab tabstop=2 shiftwidth=2 autoindent smartindent:
function
balance_install
(
)
{
drupal_install_schema
(
'balance'
)
;
}
char
database
datatype
schema
schema api
Read more
schema api 'char' datatype not working ..
March 16, 2008 - 10:36am — Anonymous
<?php
# vim: set filetype=php expandtab tabstop=2 shiftwidth=2 autoindent smartindent:
function
balance_install
(
)
{
drupal_install_schema
(
'balance'
)
;
}
char
database
datatype
schema
schema api
Read more