summaryrefslogtreecommitdiff
path: root/schema/aur-schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema/aur-schema.sql')
-rw-r--r--schema/aur-schema.sql6
1 files changed, 3 insertions, 3 deletions
diff --git a/schema/aur-schema.sql b/schema/aur-schema.sql
index 30209bd..1510e2d 100644
--- a/schema/aur-schema.sql
+++ b/schema/aur-schema.sql
@@ -1,11 +1,11 @@
--- The MySQL database layout for the AUR. Certain data
+-- The MySQL database layout for aurweb. Certain data
-- is also included such as AccountTypes, etc.
--
DROP DATABASE IF EXISTS AUR;
CREATE DATABASE AUR DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
USE AUR;
--- Define the Account Types for the AUR.
+-- Define the Account Types for aurweb.
--
CREATE TABLE AccountTypes (
ID TINYINT UNSIGNED NOT NULL AUTO_INCREMENT,
@@ -61,7 +61,7 @@ CREATE TABLE SSHPubKeys (
) ENGINE = InnoDB;
--- Track Users logging in/out of AUR web site.
+-- Track Users logging in/out of aurweb.
--
CREATE TABLE Sessions (
UsersID INTEGER UNSIGNED NOT NULL,