mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 23:31:41 +00:00
13 lines
312 B
Ruby
13 lines
312 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateInvitadxs < ActiveRecord::Migration[5.1]
|
|
def change
|
|
create_table :invitadxs do |t|
|
|
t.timestamps
|
|
t.string :password_digest
|
|
t.string :email, unique: true, index: true
|
|
t.string :confirmation_token
|
|
t.boolean :confirmed
|
|
end
|
|
end
|
|
end
|