Commit afa7f3a17a3f798fa9ff1776b21b0f19e0e51f0c
1 parent
f8ad4d2b
Exists in
master
and in
4 other branches
DB schema updated
Showing
1 changed file
with
10 additions
and
1 deletions
Show diff stats
db/schema.rb
@@ -11,7 +11,16 @@ | @@ -11,7 +11,16 @@ | ||
11 | # | 11 | # |
12 | # It's strongly recommended to check this file into your version control system. | 12 | # It's strongly recommended to check this file into your version control system. |
13 | 13 | ||
14 | -ActiveRecord::Schema.define(:version => 20111220190817) do | 14 | +ActiveRecord::Schema.define(:version => 20111225202855) do |
15 | + | ||
16 | + create_table "deploy_keys", :force => true do |t| | ||
17 | + t.integer "project_id", :null => false | ||
18 | + t.datetime "created_at" | ||
19 | + t.datetime "updated_at" | ||
20 | + t.text "key" | ||
21 | + t.string "title" | ||
22 | + t.string "identifier" | ||
23 | + end | ||
15 | 24 | ||
16 | create_table "issues", :force => true do |t| | 25 | create_table "issues", :force => true do |t| |
17 | t.string "title" | 26 | t.string "title" |