mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
14 lines
253 B
Ruby
14 lines
253 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateOpenids < ActiveRecord::Migration
|
|
def change
|
|
create_table :openids do |t|
|
|
t.string :provider
|
|
t.string :email
|
|
t.string :uid
|
|
t.integer :user_id
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|