wanelo/sequel-schema-sharding

View on GitHub
examples/db/migrations/artists/001_create_artists.rb

Summary

Maintainability
A
0 mins
Test Coverage
Sequel.migration do
  up do
    create_table :artists do
      Integer :id, null: false
      String :name, null: false
      Time :created_at
    end
  end

  down do
    drop_table :artists
  end
end