Skip to content

Commit aec2449

Browse files
committed
Create migration for calendar events
1 parent c6a762c commit aec2449

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
class AddDetailsToUpcomingEvents < ActiveRecord::Migration[6.1]
2+
def change
3+
add_column :upcoming_events, :event_update_at, :datetime
4+
add_column :upcoming_events, :address, :string
5+
add_column :upcoming_events, :place, :string
6+
add_column :upcoming_events, :limit, :integer
7+
end
8+
end

0 commit comments

Comments
 (0)