# frozen_string_literal: true

class CreateGithubUsers < ActiveRecord::Migration[7.0]
  def change
    create_table :github_users do |t|
      t.string :github_id
      t.string :login
      t.string :name
      t.string :avatar_url
      t.string :bio
      t.text :bio_html
      t.string :location
      t.jsonb :repositories
    end
  end
end