mirror of
https://github.com/internetee/registry.git
synced 2025-07-22 02:35:57 +02:00
Remove mail templates feature as buggy and unused
This commit is contained in:
parent
de3db4823e
commit
4a4552564d
17 changed files with 7 additions and 271 deletions
|
@ -1832,43 +1832,6 @@ CREATE SEQUENCE public.log_white_ips_id_seq
|
|||
ALTER SEQUENCE public.log_white_ips_id_seq OWNED BY public.log_white_ips.id;
|
||||
|
||||
|
||||
--
|
||||
-- Name: mail_templates; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE TABLE public.mail_templates (
|
||||
id integer NOT NULL,
|
||||
name character varying NOT NULL,
|
||||
subject character varying,
|
||||
"from" character varying,
|
||||
bcc character varying,
|
||||
cc character varying,
|
||||
body text NOT NULL,
|
||||
text_body text NOT NULL,
|
||||
created_at timestamp without time zone,
|
||||
updated_at timestamp without time zone
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Name: mail_templates_id_seq; Type: SEQUENCE; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE SEQUENCE public.mail_templates_id_seq
|
||||
START WITH 1
|
||||
INCREMENT BY 1
|
||||
NO MINVALUE
|
||||
NO MAXVALUE
|
||||
CACHE 1;
|
||||
|
||||
|
||||
--
|
||||
-- Name: mail_templates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER SEQUENCE public.mail_templates_id_seq OWNED BY public.mail_templates.id;
|
||||
|
||||
|
||||
--
|
||||
-- Name: nameservers; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -2669,13 +2632,6 @@ ALTER TABLE ONLY public.log_users ALTER COLUMN id SET DEFAULT nextval('public.lo
|
|||
ALTER TABLE ONLY public.log_white_ips ALTER COLUMN id SET DEFAULT nextval('public.log_white_ips_id_seq'::regclass);
|
||||
|
||||
|
||||
--
|
||||
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY public.mail_templates ALTER COLUMN id SET DEFAULT nextval('public.mail_templates_id_seq'::regclass);
|
||||
|
||||
|
||||
--
|
||||
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
||||
--
|
||||
|
@ -3079,14 +3035,6 @@ ALTER TABLE ONLY public.log_white_ips
|
|||
ADD CONSTRAINT log_white_ips_pkey PRIMARY KEY (id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: mail_templates_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY public.mail_templates
|
||||
ADD CONSTRAINT mail_templates_pkey PRIMARY KEY (id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: nameservers_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -4795,6 +4743,8 @@ INSERT INTO schema_migrations (version) VALUES ('20190415120246');
|
|||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20190426174225');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20190506100655');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20190510090240');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20190510102549');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue