about summary refs log tree commit diff
path: root/app/models
diff options
context:
space:
mode:
authorFire Demon <firedemon@creature.cafe>2020-08-01 16:25:06 -0500
committerFire Demon <firedemon@creature.cafe>2020-08-30 05:45:16 -0500
commit6681dcb849233deecf37d8b2c2968c13610ce0e9 (patch)
tree548a98583f8067f668a5df410499a9b8e7b47b25 /app/models
parent4dcd2063070de13fd66edb28f0dddb62e6297884 (diff)
[Bug, Database] Fix publishing delay migration
Diffstat (limited to 'app/models')
-rw-r--r--app/models/publishing_delay.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/models/publishing_delay.rb b/app/models/publishing_delay.rb
index 0f943c8ce..e228cd577 100644
--- a/app/models/publishing_delay.rb
+++ b/app/models/publishing_delay.rb
@@ -2,10 +2,10 @@
 #
 # Table name: publishing_delays
 #
-#  id          :bigint(8)        not null, primary key
-#  status_id   :bigint(8)        not null
-#  after       :datetime
-#  accounts_id :bigint(8)        not null
+#  id         :bigint(8)        not null, primary key
+#  status_id  :bigint(8)        not null
+#  after      :datetime
+#  account_id :bigint(8)        not null
 #
 
 class PublishingDelay < ApplicationRecord