From 6b23783b71e98bae6aced7144c6730f028873cb6 Mon Sep 17 00:00:00 2001 From: brain Date: Mon, 15 Jan 2007 00:45:23 +0000 Subject: Rename all these so that the names reflect the database server theyre used with more accurately -- for example, the old mysql ones were just .schema.sql, and the postgres ones were .pgschema.sql. Theyre now .mysql.sql, .postgresql.sql and .sqlite3.sql git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6345 e03df62e-2008-0410-955e-edbf42e46eb7 --- extras/m_sqloper.mysql.sql | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 extras/m_sqloper.mysql.sql (limited to 'extras/m_sqloper.mysql.sql') diff --git a/extras/m_sqloper.mysql.sql b/extras/m_sqloper.mysql.sql new file mode 100644 index 000000000..293a2aa70 --- /dev/null +++ b/extras/m_sqloper.mysql.sql @@ -0,0 +1,24 @@ +-- MySQL dump 9.11 +-- +-- Host: localhost Database: brain +-- ------------------------------------------------------ +-- Server version 4.0.20 + +-- +-- Table structure for table `ircd_opers` +-- + +CREATE TABLE ircd_opers ( + id bigint(20) NOT NULL auto_increment, + username text, + password text, + hostname text, + type text, + PRIMARY KEY (id) +) TYPE=MyISAM; + +-- +-- Dumping data for table `ircd_opers` +-- + + -- cgit v1.2.3