Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
schleuder
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
106
Issues
106
List
Boards
Labels
Milestones
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
schleuder
schleuder
Commits
1ed8b329
Commit
1ed8b329
authored
Jul 22, 2018
by
paz
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'cleanup-headers-to-meta' into 'master'
Cleanup headers to meta Closes
#367
See merge request
!210
parents
f2f86d42
d19698dd
Pipeline
#18697
passed with stages
in 31 minutes and 43 seconds
Changes
2
Pipelines
7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
db/schema.rb
db/schema.rb
+2
-2
spec/migrations/add_sig_enc_to_headers_to_meta_defaults_spec.rb
...igrations/add_sig_enc_to_headers_to_meta_defaults_spec.rb
+1
-2
No files found.
db/schema.rb
View file @
1ed8b329
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
201
70713215059
)
do
ActiveRecord
::
Schema
.
define
(
version:
201
80110203100
)
do
create_table
"lists"
,
force: :cascade
do
|
t
|
t
.
datetime
"created_at"
...
...
@@ -24,7 +24,7 @@ ActiveRecord::Schema.define(version: 20170713215059) do
t
.
string
"subject_prefix_out"
,
limit:
255
,
default:
""
t
.
string
"openpgp_header_preference"
,
limit:
255
,
default:
"signencrypt"
t
.
text
"public_footer"
,
default:
""
t
.
text
"headers_to_meta"
,
default:
"[
\"
from
\"
,
\"
to
\"
,
\"
date
\"
,
\"
c
c
\"
]"
t
.
text
"headers_to_meta"
,
default:
"[
\"
from
\"
,
\"
to
\"
,
\"
cc
\"
,
\"
date
\"
,
\"
sig
\"
,
\"
en
c
\"
]"
t
.
text
"bounces_drop_on_headers"
,
default:
"{
\"
x-spam-flag
\"
:
\"
yes
\"
}"
t
.
text
"keywords_admin_only"
,
default:
"[
\"
subscribe
\"
,
\"
unsubscribe
\"
,
\"
delete-key
\"
]"
t
.
text
"keywords_admin_notify"
,
default:
"[
\"
add-key
\"
]"
...
...
spec/migrations/add_sig_enc_to_headers_to_meta_defaults_spec.rb
View file @
1ed8b329
require
'spec_helper'
require
'./db/migrate/20180110203100_add_sig_enc_to_headers_to_meta_defaults.rb'
describe
'AddSigEncToHeadersToMetaDefaults'
do
let
(
:migrations_paths
)
{
ENV
[
'SCHLEUDER_ROOT'
]
+
'/
db/migrate'
}
let
(
:migrations_paths
)
{
'
db/migrate'
}
let
(
:migration_under_test
)
{
20180110203100
}
let
(
:previous_migration
)
{
20170713215059
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment