Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/git/git-scm.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2020-12-13 07:42:39 +0300
committerJeff King <peff@peff.net>2020-12-13 07:42:39 +0300
commite3c630de3d57f631edd5805d2af6123e01ec3ccc (patch)
tree064a801a84d38b40eb2417b43907ec97bedcd21d /db
parentaf9b216b8d369618cc4216e55ca1d575d4db4ac1 (diff)
db/migrate: appease rubocop
This seems kind of stupid to touch an old migration, but it insists that this should have timestamps in the table.
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20141024194605_add_xrefs.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/db/migrate/20141024194605_add_xrefs.rb b/db/migrate/20141024194605_add_xrefs.rb
index a086c7a3..b543c881 100644
--- a/db/migrate/20141024194605_add_xrefs.rb
+++ b/db/migrate/20141024194605_add_xrefs.rb
@@ -3,6 +3,8 @@
class AddXrefs < ActiveRecord::Migration
def change
create_table :xrefs do |t|
+ t.datetime "created_at"
+ t.datetime "updated_at"
t.integer :section_id
t.integer :book_id
t.string :name