Sha256: 025a8c1187da54acfee34ca54e96e2c9315829446ba5b53afb5b71adc99aeffa
Contents?: true
Size: 273 Bytes
Versions: 15
Compression:
Stored size: 273 Bytes
Contents
class CreateActiveMeetings < ActiveRecord::Migration def self.up create_table :active_meetings do |t| t.date :starts_at t.date :ends_at t.boolean :is_active t.timestamps end end def self.down drop_table :active_meetings end end
Version data entries
15 entries across 15 versions & 1 rubygems