kyopa’s blog

自分用プログラミングアウトプット

2018-10-08から1日間の記事一覧

add_indexの追加

フォロー機能を追加したいため add_indexを追加する rails g migration AddIndexToRelationships class AddIndexToRelationships < ActiveRecord::Migration[5.1] def change end class AddIndexToRelationships < ActiveRecord::Migration[5.1] def changea…

var express = require('express') express オブジェクトの用意 var app = express() アプリケーションオブジェクトの作成 app.get('/', (req, res) => { res.send('Welcome to Express!')}) ルーティングの生成 app.listen(3000, () => { console.log('Star…