main
 1# frozen_string_literal: true
 2
 3class CreateClients < ActiveRecord::Migration[5.2]
 4  def change
 5    create_table :clients, id: :uuid do |t|
 6      t.string :name, null: false
 7      t.string :password_digest, null: false
 8      t.string :redirect_uri, null: false
 9      t.timestamps null: false
10    end
11  end
12end