test

Ruby code posted
created at 08 Jul 14:47

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class CreateUsers < ActiveRecord::Migration[5.2]
  def change
    create_table :users do |t|

      # devise required
      t.string :provider
      t.string :uid

      t.string :email
      t.timestamp :last_login
     

      t.timestamps
    end
  end
269 Bytes in 2 ms with coderay