aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wilmott <p@p8952.info>2015-02-14 18:17:54 +0000
committerPeter Wilmott <p@p8952.info>2015-02-14 18:17:54 +0000
commitf5fc394147e038012606a1b8f3415974ce4959a6 (patch)
treeb354862cb3c9a7648298204f45b9781fd463b262 /web/db/migrations/014_add_timestamps.rb
parentRun repoman against all packages in the nightly task (diff)
downloadruby-tinderbox-f5fc394147e038012606a1b8f3415974ce4959a6.tar.gz
ruby-tinderbox-f5fc394147e038012606a1b8f3415974ce4959a6.tar.bz2
ruby-tinderbox-f5fc394147e038012606a1b8f3415974ce4959a6.zip
Add timestamps to pages using the 'packages' table
Diffstat (limited to 'web/db/migrations/014_add_timestamps.rb')
-rw-r--r--web/db/migrations/014_add_timestamps.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/web/db/migrations/014_add_timestamps.rb b/web/db/migrations/014_add_timestamps.rb
new file mode 100644
index 0000000..4401044
--- /dev/null
+++ b/web/db/migrations/014_add_timestamps.rb
@@ -0,0 +1,6 @@
+Sequel.migration do
+ change do
+ add_column :packages, :update_timestamp, String
+ add_column :packages, :portage_timestamp, String
+ end
+end