diff options
author | OSAMU SATO <satosamu@gmail.com> | 2020-10-13 08:01:14 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-13 01:01:14 +0200 |
commit | 96761752eccfc0d239974a24e0cc2d74c6aee7ac (patch) | |
tree | 1590275b4f8a1f954d90e870ef2bfb8ac00d7109 /db/migrate | |
parent | f54ca3d08e068af07a5b7a8b139e7658b3236db8 (diff) |
Add duration parameter to muting. (#13831)
* Adding duration to muting. * Remove useless checks
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20200317021758_add_expires_at_to_mutes.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20200317021758_add_expires_at_to_mutes.rb b/db/migrate/20200317021758_add_expires_at_to_mutes.rb new file mode 100644 index 000000000..eaae8319d --- /dev/null +++ b/db/migrate/20200317021758_add_expires_at_to_mutes.rb @@ -0,0 +1,5 @@ +class AddExpiresAtToMutes < ActiveRecord::Migration[5.2] + def change + add_column :mutes, :expires_at, :datetime + end +end |