mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 00:36:42 +01:00
Explicitly set null:true for migrations with timestamps
This commit is contained in:
parent
d12d3e0f3b
commit
f93ff5b381
@ -4,7 +4,7 @@ class CreateProblems < ActiveRecord::Migration
|
||||
t.string :title
|
||||
t.text :content
|
||||
|
||||
t.timestamps
|
||||
t.timestamps null: true
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
class CreateProblemsAgain < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :problems do |t|
|
||||
t.timestamps
|
||||
t.timestamps null: true
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Loading…
Reference in New Issue
Block a user