Implement retrieving a single event over federation
Fix url encoding during homeserver signature check
This commit is contained in:
parent
1881b7f3d6
commit
e510c3bb6a
14 changed files with 173 additions and 22 deletions
|
@ -0,0 +1,15 @@
|
|||
defmodule MatrixServer.Repo.Migrations.MoveTimestampsToIntsAgain do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
alter table(:events) do
|
||||
remove :origin_server_ts, :utc_datetime_usec, null: false
|
||||
add :origin_server_ts, :bigint, null: false
|
||||
end
|
||||
|
||||
alter table(:server_key_info) do
|
||||
remove :valid_until, :utc_datetime_usec, null: false
|
||||
add :valid_until, :bigint, default: 0, null: false
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue