/[drupal]/contributions/modules/snippets/snippets.mysql
ViewVC logotype

Contents of /contributions/modules/snippets/snippets.mysql

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.4 - (show annotations) (download)
Mon Feb 21 13:40:38 2005 UTC (4 years, 9 months ago) by axel
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +2 -1 lines
Additional field to table.
1 --
2 -- $Id: snippets.mysql,v 1.3 2005/02/18 20:19:01 axel Exp $
3 -- Snippets table structure for MySQL
4 --
5 CREATE TABLE snippets (
6 nid int(10) NOT NULL default '0',
7 snippet varchar(64) NOT NULL default '',
8 fname varchar(32) NOT NULL default '',
9 tip varchar(255) default NULL,
10 code longtext NOT NULL,
11 PRIMARY KEY (nid),
12 UNIQUE KEY snippet (snippet)
13 ) COMMENT='code snippet properties';
14

  ViewVC Help
Powered by ViewVC 1.1.2