14 lines
231 B
Ruby
14 lines
231 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateUsers < ActiveRecord::Migration[6.0]
|
|
def change
|
|
create_table :users do |t|
|
|
t.string :email
|
|
t.string :name
|
|
t.string :google_id
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|