wanelo/sequel-schema-sharding

View on GitHub
examples/db/migrations/albums/001_create_albums.rb

Summary

Maintainability
A
0 mins
Test Coverage
Sequel.migration do
  up do
    create_table :albums do
      Integer :artist_id, null: false
      String :name, null: false
      Date :release_date
      Time :created_at
    end
  end

  down do
    drop_table :albums
  end
end