Sha256: 04e79a434a3ac5701fcb04572f03a3bcb903141ece222a2c9b9944a4c4943d5c

Contents?: true

Size: 340 Bytes

Versions: 5

Compression:

Stored size: 340 Bytes

Contents

Sequel.migration do
  up do
    create_table :tags do
      primary_key :id
      String :name
      String :slug
    end
    
    create_table :tags_relationships do
      primary_key :id
      Integer :tag_id
      Integer :object_id
      String :object_type
    end
  end
  
  down do
    drop_table :tags, :tags_relationships
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
blogaze-0.2.0 lib/blogaze/db/migration/005_tags.rb
blogaze-0.1.0 lib/blogaze/db/migration/005_tags.rb
blogaze-0.0.3 lib/blogaze/db/migration/005_tags.rb
blogaze-0.0.2 lib/blogaze/db/migration/005_tags.rb
blogaze-0.0.1 lib/blogaze/db/migration/005_tags.rb