Sha256: 409e6b298fc1a98ef03ba7d87ddb8f8d5a1851ee22d8006887ad79cdb78cbf5d
Contents?: true
Size: 512 Bytes
Versions: 33
Compression:
Stored size: 512 Bytes
Contents
class CreateCalendarAndEvents < ActiveRecord::Migration def self.up create_table :calendars do |t| t.column :name, :string t.column :description, :text end create_table :events do |t| t.column :start_date, :datetime t.column :end_date, :datetime t.column :title, :string t.column :description, :text t.column :location, :string t.column :calendar_id, :integer end end def self.down drop_table :calendars drop_table :events end end
Version data entries
33 entries across 33 versions & 1 rubygems