diff options
author | Fire Demon <firedemon@creature.cafe> | 2020-08-17 20:18:52 -0500 |
---|---|---|
committer | Fire Demon <firedemon@creature.cafe> | 2020-08-30 05:45:19 -0500 |
commit | 4b83bf5c08d58618dfa63b786016759eb5e4d6b6 (patch) | |
tree | 18d13486e7003cfb69452b66484dc09337236215 /db/migrate | |
parent | f0a34ccad762a34b153be108e7ba1b6c914317a5 (diff) |
[Feature] Post signatures
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20200817225525_add_footer_to_statuses.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20200817225525_add_footer_to_statuses.rb b/db/migrate/20200817225525_add_footer_to_statuses.rb new file mode 100644 index 000000000..e85d225bc --- /dev/null +++ b/db/migrate/20200817225525_add_footer_to_statuses.rb @@ -0,0 +1,5 @@ +class AddFooterToStatuses < ActiveRecord::Migration[5.2] + def change + add_column :statuses, :footer, :text + end +end |