CREATE TYPE format_enum AS ENUM (
'html',
- 'markdown'
+ 'markdown',
+ 'text'
);
body text NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
- visible boolean DEFAULT true NOT NULL
+ visible boolean DEFAULT true NOT NULL,
+ body_format format_enum DEFAULT 'html'::format_enum NOT NULL
);
latitude double precision,
longitude double precision,
language_code character varying(255) DEFAULT 'en'::character varying NOT NULL,
- visible boolean DEFAULT true NOT NULL
+ visible boolean DEFAULT true NOT NULL,
+ body_format format_enum DEFAULT 'html'::format_enum NOT NULL
);
message_read boolean DEFAULT false NOT NULL,
to_user_id bigint NOT NULL,
to_user_visible boolean DEFAULT true NOT NULL,
- from_user_visible boolean DEFAULT true NOT NULL
+ from_user_visible boolean DEFAULT true NOT NULL,
+ body_format format_enum DEFAULT 'html'::format_enum NOT NULL
);
needs_view boolean DEFAULT false NOT NULL,
revoker_id bigint,
created_at timestamp without time zone,
- updated_at timestamp without time zone
+ updated_at timestamp without time zone,
+ reason_format format_enum DEFAULT 'html'::format_enum NOT NULL
);
preferred_editor character varying(255),
terms_seen boolean DEFAULT false NOT NULL,
openid_url character varying(255),
- image_fingerprint character varying(255)
+ image_fingerprint character varying(255),
+ description_format format_enum DEFAULT 'html'::format_enum NOT NULL
);
INSERT INTO schema_migrations (version) VALUES ('20120208194454');
+INSERT INTO schema_migrations (version) VALUES ('20120214210114');
+
INSERT INTO schema_migrations (version) VALUES ('20120219161649');
INSERT INTO schema_migrations (version) VALUES ('21');