diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-08-14 19:19:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-14 19:19:32 +0200 |
commit | 8e111b753a3411b258cdb008c9a53bad696f4df1 (patch) | |
tree | 6ae9387736b8abf180c93f7f0d25c6952c04b9b2 /spec/models | |
parent | 018a9e4e7fdfac0f2e482f4b5fa66247afbc2ddb (diff) |
Move status counters to separate table, count replies (#8104)
* Move status counters to separate table, count replies * Migration to remove old counter columns from statuses table * Fix schema file
Diffstat (limited to 'spec/models')
-rw-r--r-- | spec/models/status_stat_spec.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/models/status_stat_spec.rb b/spec/models/status_stat_spec.rb new file mode 100644 index 000000000..5e9351aff --- /dev/null +++ b/spec/models/status_stat_spec.rb @@ -0,0 +1,5 @@ +require 'rails_helper' + +RSpec.describe StatusStat, type: :model do + pending "add some examples to (or delete) #{__FILE__}" +end |