mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-01 02:17:20 +00:00
13 lines
249 B
Ruby
13 lines
249 B
Ruby
|
|
class CreateUsers < ActiveRecord::Migration[6.1]
|
||
|
|
def change
|
||
|
|
create_table :users, id: :uuid do |t|
|
||
|
|
t.string :first_name
|
||
|
|
t.string :last_name
|
||
|
|
t.string :email
|
||
|
|
t.string :password_digest
|
||
|
|
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|