14 lines
256 B
Ruby
14 lines
256 B
Ruby
|
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
|