aboutsummaryrefslogtreecommitdiffstats
path: root/trunk/etherpad/src/etherpad/db_migrations/m0007_create_pro_tables_v4.js
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/etherpad/src/etherpad/db_migrations/m0007_create_pro_tables_v4.js')
-rw-r--r--trunk/etherpad/src/etherpad/db_migrations/m0007_create_pro_tables_v4.js67
1 files changed, 67 insertions, 0 deletions
diff --git a/trunk/etherpad/src/etherpad/db_migrations/m0007_create_pro_tables_v4.js b/trunk/etherpad/src/etherpad/db_migrations/m0007_create_pro_tables_v4.js
new file mode 100644
index 0000000..bda5853
--- /dev/null
+++ b/trunk/etherpad/src/etherpad/db_migrations/m0007_create_pro_tables_v4.js
@@ -0,0 +1,67 @@
+/**
+ * Copyright 2009 Google Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS-IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import("sqlbase.sqlcommon");
+import("sqlbase.sqlobj");
+
+function run() {
+ ['pro_domains', 'pro_users', 'pro_padmeta'].forEach(function(t) {
+ if (sqlcommon.doesTableExist(t)) {
+ sqlobj.dropTable(t);
+ }
+ });
+
+ sqlobj.createTable('pro_domains', {
+ id: sqlobj.getIdColspec(),
+ subDomain: 'VARCHAR(128) UNIQUE NOT NULL',
+ extDomain: 'VARCHAR(128) DEFAULT NULL',
+ orgName: 'VARCHAR(128)'
+ });
+
+ sqlobj.createIndex('pro_domains', ['subDomain']);
+ sqlobj.createIndex('pro_domains', ['extDomain']);
+
+ sqlobj.createTable('pro_users', {
+ id: sqlobj.getIdColspec(),
+ domainId: 'INT NOT NULL',
+ fullName: 'VARCHAR(128) NOT NULL',
+ email: 'VARCHAR(128) NOT NULL', // not unique because same
+ // email can be on multiple domains.
+ passwordHash: 'VARCHAR(128) NOT NULL',
+ createdDate: sqlobj.getDateColspec("NOT NULL"),
+ lastLoginDate: sqlobj.getDateColspec("DEFAULT NULL"),
+ isAdmin: sqlobj.getBoolColspec("DEFAULT 0")
+ });
+
+ sqlobj.createTable('pro_padmeta', {
+ id: sqlobj.getIdColspec(),
+ domainId: 'INT NOT NULL',
+ localPadId: 'VARCHAR(128) NOT NULL',
+ title: 'VARCHAR(128)',
+ creatorId: 'INT DEFAULT NULL',
+ createdDate: sqlobj.getDateColspec("NOT NULL"),
+ lastEditorId: 'INT DEFAULT NULL',
+ lastEditedDate: sqlobj.getDateColspec("DEFAULT NULL")
+ });
+
+ sqlobj.createIndex('pro_padmeta', ['domainId', 'localPadId']);
+
+ var pneDomain = "<<private-network>>";
+ if (!sqlobj.selectSingle('pro_domains', {subDomain: pneDomain})) {
+ sqlobj.insert('pro_domains', {subDomain: pneDomain});
+ }
+}
+