新しいリンク テーブルを作成しようとし、移行中に必要な列を指定しました。
db/migrate の下
class CreateLinks < ActiveRecord::Migration
def change
create_table :links do |t|
t.integer :user_id
t.string :url
t.timestamps
end
end
end
class AddTitleToLink < ActiveRecord::Migration
def change
# add_column :links, :user_id, :integer
add_column :links, :title, :string
end
end
走ったらrails console
リンクが戻ってきた
Link(id: integer, created_at: datetime, updated_at: datetime, title: string)
user_id
(外部キー)のようで、ありませんurl
。Title
後で追加されたものを表に示します。
私は何か悪いことをしましたか?