Expect relays to answer with accept/reject (#8179)
This commit is contained in:
parent
2aeeffc3ec
commit
39e361a56d
5 changed files with 57 additions and 7 deletions
19
db/migrate/20180812123222_change_relays_enabled.rb
Normal file
19
db/migrate/20180812123222_change_relays_enabled.rb
Normal file
|
@ -0,0 +1,19 @@
|
|||
class ChangeRelaysEnabled < ActiveRecord::Migration[5.2]
|
||||
def up
|
||||
# The relays table is supposed to be very small,
|
||||
# single-digit number of rows, so this should be fine
|
||||
safety_assured do
|
||||
add_column :relays, :state, :integer, default: 0, null: false
|
||||
|
||||
# At the time of this migration, no relays reject anyone, so if
|
||||
# there are enabled ones, they are accepted
|
||||
execute 'UPDATE relays SET state = 2 WHERE enabled = true'
|
||||
remove_column :relays, :enabled
|
||||
end
|
||||
end
|
||||
|
||||
def down
|
||||
remove_column :relays, :state
|
||||
add_column :relays, :enabled, :boolean, default: false, null: false
|
||||
end
|
||||
end
|
|
@ -10,7 +10,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 2018_08_08_175627) do
|
||||
ActiveRecord::Schema.define(version: 2018_08_12_123222) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -383,11 +383,10 @@ ActiveRecord::Schema.define(version: 2018_08_08_175627) do
|
|||
|
||||
create_table "relays", force: :cascade do |t|
|
||||
t.string "inbox_url", default: "", null: false
|
||||
t.boolean "enabled", default: false, null: false
|
||||
t.string "follow_activity_id"
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.index ["enabled"], name: "index_relays_on_enabled"
|
||||
t.integer "state", default: 0, null: false
|
||||
end
|
||||
|
||||
create_table "report_notes", force: :cascade do |t|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue