stat referrers, locations, and paths

This commit is contained in:
Kyle Drake 2015-05-02 02:34:24 -07:00
parent d9babf5cd6
commit 227b123fc9
10 changed files with 195 additions and 47 deletions

View file

@ -0,0 +1,9 @@
Sequel.migration do
up {
add_column :stats, :bandwidth, :bigint, default: 0
}
down {
drop_column :stats, :bandwidth
}
end