-- Created by Vertabelo (http://vertabelo.com)
-- Script type: create
-- Scope: [tables, references, sequences, views, procedures]
-- Generated at Sat Mar 28 13:12:21 UTC 2015



-- tables
-- Table: Channel
CREATE TABLE nodes (parent integeR, type text);
CREATE INDEX parent_index on nodes(parent);
CREATE TABLE node_properties ( node integer, name text,value text);
CREATE INDEX node_index on node_properties(node);

-- tables
-- Table: ImageTypes
CREATE TABLE ImageTypes (
    ID integer NOT NULL PRIMARY KEY,
    Type text NOT NULL
);

-- End of file.