1
0
Fork 0
This repository has been archived on 2023-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
lesson-decentralized_microb.../db/migrate/20210310092513_create_profi...

11 lines
217 B
Ruby

class CreateProfiles < ActiveRecord::Migration[6.1]
def change
create_table :profiles do |t|
t.timestamps
t.string :first_name
t.string :last_name
t.string :description
end
end
end