Issue #82 - Add owner to project
This commit is contained in:
parent
819818ad74
commit
9840102651
7 changed files with 15 additions and 3 deletions
5
db/migrate/20111009101738_add_ownerto_project.rb
Normal file
5
db/migrate/20111009101738_add_ownerto_project.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class AddOwnertoProject < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :projects, :owner_id, :integer
|
||||
end
|
||||
end
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended to check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(:version => 20111005193700) do
|
||||
ActiveRecord::Schema.define(:version => 20111009101738) do
|
||||
|
||||
create_table "issues", :force => true do |t|
|
||||
t.string "title"
|
||||
|
@ -52,6 +52,7 @@ ActiveRecord::Schema.define(:version => 20111005193700) do
|
|||
t.datetime "updated_at"
|
||||
t.boolean "private_flag", :default => true, :null => false
|
||||
t.string "code"
|
||||
t.integer "owner_id"
|
||||
end
|
||||
|
||||
create_table "users", :force => true do |t|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue