summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-11-23 00:06:30 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-11-23 01:05:43 -0500
commite3dfb09aec084fc6bd119309ce949eaab714eae7 (patch)
treeadff790795bcf713dab31e7c537753a3c4cf62b8 /schema
parent05bf00c441283bb4267e328bf463c83745fec22b (diff)
Re-brand to clarify that the software is aurweb; the instance is the AUR.
Diffstat (limited to 'schema')
-rw-r--r--schema/aur-schema.sql6
-rwxr-xr-xschema/gendummydata.py4
2 files changed, 5 insertions, 5 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,
diff --git a/schema/gendummydata.py b/schema/gendummydata.py
index 9dd2f45..b5512c5 100755
--- a/schema/gendummydata.py
+++ b/schema/gendummydata.py
@@ -3,11 +3,11 @@
usage: gendummydata.py outputfilename.sql
"""
#
-# This script seeds the AUR database with dummy data for
+# This script seeds the aurweb database with dummy data for
# use during development/testing. It uses random entries
# from /usr/share/dict/words to create user accounts and
# package names. It generates the SQL statements to
-# insert these users/packages into the AUR database.
+# insert these users/packages into the aurweb database.
#
import random
import time