Sha256: d69fbaa5031991b20f12d7b37772d7b275374f00a940afdbb7f123cf06ee4c55

Contents?: true

Size: 533 Bytes

Versions: 5

Compression:

Stored size: 533 Bytes

Contents

ActiveRecord::Migration.verbose       = false
ActiveRecord::Base.establish_connection :adapter => "sqlite3", :database => ":memory:"

ActiveRecord::Schema.define :version => 1 do

  create_table  :schedular_events do |t|
    t.string    :name
    t.string    :dates
    t.text      :description
    t.timestamps
  end
  
  create_table :schedular_times do |t|
    t.datetime :value
    t.boolean  :all_day
  end
  
  create_table :schedular_events_times, :id => false do |t|
    t.integer  :time_id
    t.integer  :event_id
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
schedular-0.1.5 test/support/migrations.rb
schedular-0.1.4 test/support/migrations.rb
schedular-0.1.3 test/support/migrations.rb
schedular-0.1.2 test/support/migrations.rb
schedular-0.1.1 test/support/migrations.rb