Sha256: 40852c52977b75f929f42d5cf51de3e6ae64fc36bf5a78dfd07032cbd0bac357

Contents?: true

Size: 292 Bytes

Versions: 3

Compression:

Stored size: 292 Bytes

Contents

Sequel.migration do
  change do
    create_table(:hashtags) do
      primary_key :id
      foreign_key :workspace_id, :workspaces, :on_delete => :cascade, :index => true
      String :tag, :index => true
      DateTime :updated_at
      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/006_create_hashtags.rb
birdwatcher-0.3.1 db/migrations/006_create_hashtags.rb
birdwatcher-0.1.0 db/migrations/006_create_hashtags.rb