10 lines
		
	
	
	
		
			282 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			282 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
defmodule Pleroma.Repo.Migrations.MoveKeysToSeparateColumn do
 | 
						|
  use Ecto.Migration
 | 
						|
 | 
						|
  def change do
 | 
						|
    execute(
 | 
						|
      "update users set keys = info->>'keys' where local",
 | 
						|
      "update users set info = jsonb_set(info, '{keys}'::text[], to_jsonb(keys)) where local"
 | 
						|
    )
 | 
						|
  end
 | 
						|
end
 |