Class: AddTimestamps
- Inherits:
-
Sequel::Migration
- Object
- Sequel::Migration
- AddTimestamps
- Defined in:
- lib/larch/db/migrate/002_add_timestamps.rb
Instance Method Summary collapse
Instance Method Details
#down ⇒ Object
2 3 4 5 6 7 |
# File 'lib/larch/db/migrate/002_add_timestamps.rb', line 2 def down alter_table :accounts do drop_column :created_at drop_column :updated_at end end |
#up ⇒ Object
9 10 11 12 13 14 |
# File 'lib/larch/db/migrate/002_add_timestamps.rb', line 9 def up alter_table :accounts do add_column :created_at, :integer add_column :updated_at, :integer end end |