features/model.feature in katapult-0.1.0 vs features/model.feature in katapult-0.1.1
- old
+ new
@@ -26,11 +26,11 @@
"""
class CreateCars < ActiveRecord::Migration
def change
create_table :cars do |t|
- t.timestamps
+ t.timestamps null: false
end
end
end
"""
@@ -93,10 +93,10 @@
t.string :email
t.decimal :income, precision: 10, scale: 2
t.string :homepage
t.boolean :locked
- t.timestamps
+ t.timestamps null: false
end
end
end
"""