diff options
author | Peter Wilmott <p@p8952.info> | 2015-02-14 18:17:54 +0000 |
---|---|---|
committer | Peter Wilmott <p@p8952.info> | 2015-02-14 18:17:54 +0000 |
commit | f5fc394147e038012606a1b8f3415974ce4959a6 (patch) | |
tree | b354862cb3c9a7648298204f45b9781fd463b262 /web/db/migrations/014_add_timestamps.rb | |
parent | Run repoman against all packages in the nightly task (diff) | |
download | ruby-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.rb | 6 |
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 |