Commit 117d1e90fdef3aaf64901ba18a5ce5bab4c668d8
1 parent
38cdb3eb
Exists in
master
and in
4 other branches
add expires_at column to snippets
Showing
2 changed files
with
7 additions
and
1 deletions
Show diff stats
db/schema.rb
| ... | ... | @@ -11,7 +11,7 @@ |
| 11 | 11 | # |
| 12 | 12 | # It's strongly recommended to check this file into your version control system. |
| 13 | 13 | |
| 14 | -ActiveRecord::Schema.define(:version => 20111025134235) do | |
| 14 | +ActiveRecord::Schema.define(:version => 20111027051828) do | |
| 15 | 15 | |
| 16 | 16 | create_table "issues", :force => true do |t| |
| 17 | 17 | t.string "title" |
| ... | ... | @@ -65,6 +65,7 @@ ActiveRecord::Schema.define(:version => 20111025134235) do |
| 65 | 65 | t.datetime "created_at" |
| 66 | 66 | t.datetime "updated_at" |
| 67 | 67 | t.string "file_name" |
| 68 | + t.datetime "expires_at" | |
| 68 | 69 | end |
| 69 | 70 | |
| 70 | 71 | create_table "users", :force => true do |t| | ... | ... |