Merge branch 'refs/heads/snippets_expiration' into dev
Conflicts: db/schema.rb
This commit is contained in:
commit
89fa800e28
11 changed files with 71 additions and 31 deletions
5
db/migrate/20111027051828_add_expires_at_to_snippets.rb
Normal file
5
db/migrate/20111027051828_add_expires_at_to_snippets.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class AddExpiresAtToSnippets < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :snippets, :expires_at, :datetime
|
||||
end
|
||||
end
|
|
@ -65,6 +65,7 @@ ActiveRecord::Schema.define(:version => 20111027142641) do
|
|||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.string "file_name"
|
||||
t.datetime "expires_at"
|
||||
end
|
||||
|
||||
create_table "users", :force => true do |t|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue