aboutsummaryrefslogtreecommitdiff
path: root/dbinit.sql
diff options
context:
space:
mode:
Diffstat (limited to 'dbinit.sql')
-rw-r--r--dbinit.sql11
1 files changed, 10 insertions, 1 deletions
diff --git a/dbinit.sql b/dbinit.sql
index 9ee8f0d..a75b146 100644
--- a/dbinit.sql
+++ b/dbinit.sql
@@ -29,7 +29,6 @@ CREATE TABLE `arfnet2`.`orders` (
`billing` VARCHAR(255) NOT NULL ,
`date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ,
`status` ENUM('setting up','active','inactive') NOT NULL DEFAULT 'setting up' ,
- `duedate` TIMESTAMP NOT NULL DEFAULT 0 ,
`comments` TEXT NOT NULL ,
PRIMARY KEY (`id`)
);
@@ -45,3 +44,13 @@ CREATE TABLE `arfnet2`.`tickets` (
`asignee` INT NOT NULL ,
PRIMARY KEY (`id`)
);
+
+CREATE TABLE `arfnet2`.`invoices` (
+ `id` INT NOT NULL AUTO_INCREMENT ,
+ `order` INT NOT NULL ,
+ `desc` VARCHAR(255) NOT NULL ,
+ `date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ,
+ `pdf` MEDIUMBLOB NOT NULL ,
+ `status` ENUM('paid','unpaid') NOT NULL DEFAULT 'unpaid' ,
+ PRIMARY KEY (`id`)
+);