Sha256: ce2683097e5ab557bdfd3f38572db5dac42754f8362eacdbff39491873d669e6

Contents?: true

Size: 276 Bytes

Versions: 3

Compression:

Stored size: 276 Bytes

Contents

Sequel.migration do
  change do
    create_table(:influencers) do
      primary_key :id
      foreign_key :workspace_id, :workspaces, :on_delete => :cascade, :index => true
      String :screen_name, :index => true
      DateTime :created_at, :index => true
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
birdwatcher-0.4.0 db/migrations/012_create_influencers.rb
birdwatcher-0.3.1 db/migrations/012_create_influencers.rb
birdwatcher-0.1.0 db/migrations/012_create_influencers.rb