Sha256: d6e1ce0f74a57bc4e9ddf8a8d453b447bc8dca2dc20e048faa7405b145b7bd74

Contents?: true

Size: 355 Bytes

Versions: 6

Compression:

Stored size: 355 Bytes

Contents

class CreateSocialFrameworkEvents < ActiveRecord::Migration
  def change
    create_table :social_framework_events do |t|
      t.string :title, null: false
      t.string :description
      t.timestamp :start
      t.timestamp :finish
      t.boolean :particular, default: false
      t.belongs_to :route
      t.timestamps null: false
    end
  end
end

Version data entries

6 entries across 3 versions & 1 rubygems

Version Path
social_framework-1.0.1 db/migrate/20160406133419_create_social_framework_events.rb
social_framework-1.0.1 db/tmp/migrate/20160406133419_create_social_framework_events.rb
social_framework-0.0.3 db/migrate/20160406133419_create_social_framework_events.rb
social_framework-0.0.3 db/tmp/migrate/20160406133419_create_social_framework_events.rb
social_framework-0.0.2 db/migrate/20160406133419_create_social_framework_events.rb
social_framework-0.0.2 db/tmp/migrate/20160406133419_create_social_framework_events.rb