summaryrefslogtreecommitdiffstats
path: root/db/migrate
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/032_create_time_entries.rb24
-rw-r--r--db/migrate/033_add_timelog_permissions.rb9
2 files changed, 33 insertions, 0 deletions
diff --git a/db/migrate/032_create_time_entries.rb b/db/migrate/032_create_time_entries.rb
new file mode 100644
index 000000000..e055c13e6
--- /dev/null
+++ b/db/migrate/032_create_time_entries.rb
@@ -0,0 +1,24 @@
+class CreateTimeEntries < ActiveRecord::Migration
+ def self.up
+ create_table :time_entries do |t|
+ t.column :project_id, :integer, :null => false
+ t.column :user_id, :integer, :null => false
+ t.column :issue_id, :integer
+ t.column :hours, :float, :null => false
+ t.column :comment, :string, :limit => 255
+ t.column :activity_id, :integer, :null => false
+ t.column :spent_on, :date, :null => false
+ t.column :tyear, :integer, :null => false
+ t.column :tmonth, :integer, :null => false
+ t.column :tweek, :integer, :null => false
+ t.column :created_on, :datetime, :null => false
+ t.column :updated_on, :datetime, :null => false
+ end
+ add_index :time_entries, [:project_id], :name => :time_entries_project_id
+ add_index :time_entries, [:issue_id], :name => :time_entries_issue_id
+ end
+
+ def self.down
+ drop_table :time_entries
+ end
+end
diff --git a/db/migrate/033_add_timelog_permissions.rb b/db/migrate/033_add_timelog_permissions.rb
new file mode 100644
index 000000000..3b5b81ed6
--- /dev/null
+++ b/db/migrate/033_add_timelog_permissions.rb
@@ -0,0 +1,9 @@
+class AddTimelogPermissions < ActiveRecord::Migration
+ def self.up
+ Permission.create :controller => "timelog", :action => "edit", :description => "button_log_time", :sort => 1520, :is_public => false, :mail_option => 0, :mail_enabled => 0
+ end
+
+ def self.down
+ Permission.find_by_controller_and_action('timelog', 'edit').destroy
+ end
+end