comparison .svn/pristine/ce/ceeec812f6673a5b491920c0b24b5c1bc35d610b.svn-base @ 909:cbb26bc654de redmine-1.3

Update to Redmine 1.3-stable branch (Redmine SVN rev 8964)
author Chris Cannam
date Fri, 24 Feb 2012 19:09:32 +0000
parents
children
comparison
equal deleted inserted replaced
908:c6c2cbd0afee 909:cbb26bc654de
1 # Sample plugin migration
2 # Use rake db:migrate_plugins to migrate installed plugins
3 class CreateMeetings < ActiveRecord::Migration
4 def self.up
5 create_table :meetings do |t|
6 t.column :project_id, :integer, :null => false
7 t.column :description, :string
8 t.column :scheduled_on, :datetime
9 end
10 end
11
12 def self.down
13 drop_table :meetings
14 end
15 end