From c30a095fbb9901bae1ee68350006a5d33faeaf71 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Sun, 10 Apr 2016 02:09:20 +0200 Subject: [PATCH] Remove useless SQL file --- MANIFEST.in | 2 +- schema.sql | 31 ------------------------------- 2 files changed, 1 insertion(+), 32 deletions(-) delete mode 100644 schema.sql diff --git a/MANIFEST.in b/MANIFEST.in index c715ccc..48baaf7 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1 @@ -include COPYING NEWS.rst TODO.rst README.rst config logging radicale.py radicale.fcgi radicale.wsgi schema.sql +include COPYING NEWS.rst TODO.rst README.rst config logging radicale.py radicale.fcgi radicale.wsgi diff --git a/schema.sql b/schema.sql deleted file mode 100644 index 92c96bb..0000000 --- a/schema.sql +++ /dev/null @@ -1,31 +0,0 @@ --- This is the database schema for PostgreSQL and MySQL and SQLite. - -create table collection ( - path varchar(200) not null, - parent_path varchar(200) references collection (path), - primary key (path)); - -create table item ( - name varchar(200) not null, - tag text not null, - collection_path varchar(200) references collection (path), - primary key (name)); - -create table header ( - name varchar(200) not null, - value text not null, - collection_path varchar(200) references collection (path), - primary key (name, collection_path)); - -create table line ( - name text not null, - value text not null, - item_name varchar(200) references item (name), - timestamp bigint not null, - primary key (timestamp)); - -create table property ( - name varchar(200) not null, - value text not null, - collection_path varchar(200) references collection (path), - primary key (name, collection_path));