2014-10-06から1日間の記事一覧

Gratan: MySQL権限管理ツール

いつものアレです。 https://github.com/winebarrel/gratan 以下の様なDSLでMySQLの権限を管理します。 require 'other/grantfile' user "scott", "%" do on "*.*" do grant "USAGE" end on "test.*" do grant "SELECT" grant "INSERT" end end user "scott"…