add ApiClient#is_trusted, show list of api tokens in Workbench
[arvados.git] / services / api / db / migrate / 20130617150007_add_is_trusted_to_api_clients.rb
diff --git a/services/api/db/migrate/20130617150007_add_is_trusted_to_api_clients.rb b/services/api/db/migrate/20130617150007_add_is_trusted_to_api_clients.rb
new file mode 100644 (file)
index 0000000..0d9b992
--- /dev/null
@@ -0,0 +1,5 @@
+class AddIsTrustedToApiClients < ActiveRecord::Migration
+  def change
+    add_column :api_clients, :is_trusted, :boolean, :default => false
+  end
+end