mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 04:21:41 +00:00
12 lines
281 B
Ruby
12 lines
281 B
Ruby
|
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
|