friends/db/migrate/20231208234304_create_frien...

14 lines
256 B
Ruby
Raw Permalink Normal View History

2023-12-14 20:50:50 -06:00
class CreateFriends < ActiveRecord::Migration[6.1]
def change
create_table :friends do |t|
t.string :first_name
t.string :last_name
t.string :email
t.string :phone
t.string :twitter
t.timestamps
end
end
end