mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
12 lines
249 B
Ruby
12 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
|