diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2021-05-07 19:32:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-07 19:32:58 +0200 |
commit | 1294f9ee4fab176bdc3989d667eed43f57baad5a (patch) | |
tree | 9f497d7994f87c97ad65f2bfe1aa62b594fed092 /db/schema.rb | |
parent | d8e0c8a89e1f1dd1c4ce1513deaeb3c85c6e4a42 (diff) |
Remove PubSubHubbub-related columns from accounts table (#16170)
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/db/schema.rb b/db/schema.rb index 19b1afe00..583bdf317 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2021_05_05_174616) do +ActiveRecord::Schema.define(version: 2021_05_07_001928) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -136,12 +136,8 @@ ActiveRecord::Schema.define(version: 2021_05_05_174616) do create_table "accounts", id: :bigint, default: -> { "timestamp_id('accounts'::text)" }, force: :cascade do |t| t.string "username", default: "", null: false t.string "domain" - t.string "secret", default: "", null: false t.text "private_key" t.text "public_key", default: "", null: false - t.string "remote_url", default: "", null: false - t.string "salmon_url", default: "", null: false - t.string "hub_url", default: "", null: false t.datetime "created_at", null: false t.datetime "updated_at", null: false t.text "note", default: "", null: false |