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

Contents of /contributions/modules/freelinking/freelinking.mysql

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


Revision 1.5 - (show annotations) (download)
Sun Jan 22 23:35:30 2006 UTC (3 years, 10 months ago) by eafarris
Branch: MAIN
CVS Tags: DRUPAL-5--1-3-BETA1, DRUPAL-6--1-0, DRUPAL-6--1-1, DRUPAL-6--1-2, DRUPAL-5--1-3-BETA2, DRUPAL-4-7--1-0, DRUPAL-6--1-3, DRUPAL-5--1-1, DRUPAL-5--1-0, DRUPAL-5--1-2, HEAD
Branch point for: DRUPAL-5, DRUPAL-4-7, DRUPAL-6--1
Changes since 1.4: +5 -4 lines
* CHANGELOG.txt -- must keep up the changelog. I've been really bad at
  that.
* UPGRADE.txt -- added instructions for upgrading the 4.6 version as
  well as upgrading from HEAD.
* freelinking.mysql -- new schema, with a hash as primary key, new path,
  args columns
* freelinking.module -- changes to accomodate the new primary key, fixes
  for duplicate db rows getting added.
* freelinking.install -- support for UTF-8 db type, and an untested
  upgrade to the new db schema for HEAD users.

Once some more testing is done, this will probably get tagged for 4.7.
1 CREATE TABLE freelinking (
2 hash CHAR(32) NOT NULL,
3 phrase VARCHAR(200) NOT NULL,
4 path VARCHAR(200) NOT NULL,
5 args VARCHAR(200) NOT NULL,
6
7 PRIMARY KEY(hash)
8 ) TYPE=MyISAM /*!40100 DEFAULT CHARACTER SET utf8 */;
9
10

  ViewVC Help
Powered by ViewVC 1.1.2