From: Akshita Jha <[email protected]> --- sql/add_tables.sql | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 sql/add_tables.sql
diff --git a/sql/add_tables.sql b/sql/add_tables.sql new file mode 100644 index 0000000..07a4376 --- /dev/null +++ b/sql/add_tables.sql @@ -0,0 +1,17 @@ +-- blends_unknown_packages: packages which are not present in vcs + +CREATE TABLE blends_unknown_packages + (blend text, + package text, + pkg_url text, + source text, + maintainer text, + maintainer_name text, + maintainer_email text, + description text, + long_description text, + description_md5 text, + homepage text, + langauge text, + enhances text +); -- 1.9.1
