Sha256: 64be886e764ceb55e12049f8563c533d03a6f3bce46ce71347d9b132d109b8ae

Contents?: true

Size: 283 Bytes

Versions: 6

Compression:

Stored size: 283 Bytes

Contents

class CreateSocialFrameworkSchedules < ActiveRecord::Migration
  def change
    create_table :social_framework_schedules do |t|

      t.belongs_to :user, null: false
      t.timestamps null: false
    end

    add_index :social_framework_schedules, :user_id, unique: true
  end
end

Version data entries

6 entries across 3 versions & 1 rubygems

Version Path
social_framework-1.0.1 db/migrate/20160406131316_create_social_framework_schedules.rb
social_framework-1.0.1 db/tmp/migrate/20160406131316_create_social_framework_schedules.rb
social_framework-0.0.3 db/migrate/20160406131316_create_social_framework_schedules.rb
social_framework-0.0.3 db/tmp/migrate/20160406131316_create_social_framework_schedules.rb
social_framework-0.0.2 db/migrate/20160406131316_create_social_framework_schedules.rb
social_framework-0.0.2 db/tmp/migrate/20160406131316_create_social_framework_schedules.rb