[fix #1097] Add whitelist mechanisme to procedure
This commit is contained in:
parent
f1b7a03b63
commit
6a2b575027
4 changed files with 14 additions and 2 deletions
|
@ -0,0 +1,5 @@
|
|||
class AddWhitelistedAtColumnToProcedure < ActiveRecord::Migration[5.0]
|
||||
def change
|
||||
add_column :procedures, :whitelisted_at, :datetime
|
||||
end
|
||||
end
|
|
@ -10,7 +10,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20171214155554) do
|
||||
ActiveRecord::Schema.define(version: 20180105152235) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -424,6 +424,7 @@ ActiveRecord::Schema.define(version: 20171214155554) do
|
|||
t.datetime "published_at"
|
||||
t.datetime "hidden_at"
|
||||
t.datetime "archived_at"
|
||||
t.datetime "whitelisted_at"
|
||||
t.index ["hidden_at"], name: "index_procedures_on_hidden_at", using: :btree
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue