mirror of
https://github.com/internetee/registry.git
synced 2025-07-01 16:53:37 +02:00
Added initial mail template editor #2369
This commit is contained in:
parent
5ba39fb406
commit
032cff3cf3
16 changed files with 298 additions and 1 deletions
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20150810114746) do
|
||||
ActiveRecord::Schema.define(version: 20150825125118) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -878,6 +878,18 @@ ActiveRecord::Schema.define(version: 20150810114746) do
|
|||
add_index "log_zonefile_settings", ["item_type", "item_id"], name: "index_log_zonefile_settings_on_item_type_and_item_id", using: :btree
|
||||
add_index "log_zonefile_settings", ["whodunnit"], name: "index_log_zonefile_settings_on_whodunnit", using: :btree
|
||||
|
||||
create_table "mail_templates", force: :cascade do |t|
|
||||
t.string "name", null: false
|
||||
t.string "subject"
|
||||
t.string "from"
|
||||
t.string "bcc"
|
||||
t.string "cc"
|
||||
t.text "body", null: false
|
||||
t.text "text_body", null: false
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
end
|
||||
|
||||
create_table "messages", force: :cascade do |t|
|
||||
t.integer "registrar_id"
|
||||
t.string "body"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue