2015-07-01から1ヶ月間の記事一覧

Lambchop v0.1.0

世間様はLamb段階になったらしいので、AWS Lambda便利実行ツール Lambchop のv0.1.0をリリースしました。 https://github.com/winebarrel/lambchop lambchop (0.1.0): It is a tool that invoke AWS Lambda function from the local machine as a normally s…

AR/MySQLでの"default"の変更について

MySQLで以下のようなカラムがあったとして t.integer "foo", limit: 4, default: 0, null: false #`foo` int(11) NOT NULL DEFAULT '0', 以下のようなマイグレーションを実行したとすると change_column("articles", "foo", :integer, null: false) 実行され…