aboutsummaryrefslogtreecommitdiffstats
path: root/sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql')
-rw-r--r--sql/fileshare.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/fileshare.sql b/sql/fileshare.sql
index 4cd748a..ed48696 100644
--- a/sql/fileshare.sql
+++ b/sql/fileshare.sql
@@ -1,3 +1,12 @@
+/*BEWARE!*/
+drop table if exists nodes;
+drop table if exists users;
+drop table if exists node_access;
+drop table if exists node_links;
+
+
+
+
create table nodes (
node_id int not null auto_increment,
is_directory boolean default false,