remove valid_signature from gpg_signatures
This commit is contained in:
parent
55acc66d96
commit
e7d0febb81
|
|
@ -0,0 +1,11 @@
|
|||
class RemoveValidSignatureFromGpgSignatures < ActiveRecord::Migration
|
||||
DOWNTIME = false
|
||||
|
||||
def up
|
||||
remove_column :gpg_signatures, :valid_signature
|
||||
end
|
||||
|
||||
def down
|
||||
add_column :gpg_signatures, :valid_signature, :boolean
|
||||
end
|
||||
end
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20170830125940) do
|
||||
ActiveRecord::Schema.define(version: 20170831195038) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
|
@ -609,7 +609,6 @@ ActiveRecord::Schema.define(version: 20170830125940) do
|
|||
t.datetime "updated_at", null: false
|
||||
t.integer "project_id"
|
||||
t.integer "gpg_key_id"
|
||||
t.boolean "valid_signature"
|
||||
t.binary "commit_sha"
|
||||
t.binary "gpg_key_primary_keyid"
|
||||
t.text "gpg_key_user_name"
|
||||
|
|
|
|||
Loading…
Reference in New Issue