(file) Return to createTable.sql CVS log (file) (dir) Up to [home] / python / delicious

File: [home] / python / delicious / createTable.sql (download)
Revision: 1.1, Wed Aug 25 20:36:00 2004 UTC (6 years ago) by ws
Branch: MAIN
CVS Tags: HEAD
script for grabbing delicious posts and putting it into a db

-- a single del.icio.us user's bookmarks

--drop table if exists delicious;

create table if not exists delicious (
    id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
    hash CHAR(32) NOT NULL,
    time DATETIME NOT NULL,
    href TEXT NOT NULL,
    description TEXT NOT NULL,
    extended TEXT NOT NULL,
    tag TEXT NOT NULL,
    UNIQUE INDEX (hash)
)

tony at ponderer dot org
Powered by
ViewCVS 0.9.2