forked from alantrick/redmine_sql_reports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
33 lines (23 loc) · 921 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
= SQL Reports for Redmine
== Introduction
This is a plugin written for Redmine that allows the display of arbitrary SQL
queries. At the moment, it only displays those queries, there is no way to
create or edit them.
Also, BIG FAT WARNING. By using this module, it is very possible to create
security problems. Reports are visible to all authenticated users, regardless
of whether they would normally be able to view the content or not. Be careful
about the SQL code you put in your queries.
== License
See the COPYING file.
== Installation
$ cd vendor/plugins/
$ git clone git://github.com/alantrick/redmine_sql_reports.git
$ cd redmin_sql_reports
# may need $ export RAILS_ENV="production"
$ rake db:migrate_plugins
== Update
Assuming installation instructions above were followed.
$ cd vendor/plugins/redmin_sql_reports
$ git pull
# may need $ export RAILS_ENV="production"
$ rake db:migrate_plugins