Merge branch 'refs/heads/snippets_expiration' into dev

Conflicts:
	db/schema.rb
This commit is contained in:
Nihad Abbasov 2011-10-28 00:28:37 +05:00
commit 89fa800e28
11 changed files with 71 additions and 31 deletions

View file

@ -0,0 +1,5 @@
class AddExpiresAtToSnippets < ActiveRecord::Migration
def change
add_column :snippets, :expires_at, :datetime
end
end

View file

@ -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|