mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-20 07:59:03 -04:00
15 lines
245 B
MySQL
15 lines
245 B
MySQL
|
--
|
||
|
-- PostgreSQL database dump
|
||
|
--
|
||
|
|
||
|
CREATE TABLE ircd_opers (
|
||
|
id serial NOT NULL,
|
||
|
username text,
|
||
|
"password" text,
|
||
|
hostname text,
|
||
|
"type" text
|
||
|
);
|
||
|
ALTER TABLE ONLY ircd_opers
|
||
|
ADD CONSTRAINT ircd_opers_pkey PRIMARY KEY (id);
|
||
|
|