Sha256: ec91a652844c3c8dfd23dd1ff2b5eef09dc25d472504c68d1d2bc04537173f15

Contents?: true

Size: 388 Bytes

Versions: 45

Compression:

Stored size: 388 Bytes

Contents

Sequel.migration do
  change do
    create_table(:<%= table_name %>) do
      uuid         :id, default: Sequel.function(:uuid_generate_v4), primary_key: true
      timestamptz  :created_at, default: Sequel.function(:now), null: false
<% if paranoid %>
      timestamptz  :deleted_at
<% end %>
      timestamptz  :updated_at, default: Sequel.function(:now), null: false
    end
  end
end

Version data entries

45 entries across 45 versions & 1 rubygems

Version Path
pliny-1.1.0 lib/pliny/templates/model_migration.erb
pliny-1.0.0 lib/pliny/templates/model_migration.erb
pliny-0.32.0 lib/pliny/templates/model_migration.erb
pliny-0.31.0 lib/pliny/templates/model_migration.erb
pliny-0.30.1 lib/pliny/templates/model_migration.erb
pliny-0.30.0 lib/pliny/templates/model_migration.erb
pliny-0.29.0 lib/pliny/templates/model_migration.erb
pliny-0.28.0 lib/pliny/templates/model_migration.erb
pliny-0.27.1 lib/pliny/templates/model_migration.erb
pliny-0.27.0 lib/pliny/templates/model_migration.erb
pliny-0.26.2 lib/pliny/templates/model_migration.erb
pliny-0.26.1 lib/pliny/templates/model_migration.erb
pliny-0.26.0 lib/pliny/templates/model_migration.erb
pliny-0.25.1 lib/pliny/templates/model_migration.erb
pliny-0.25.0 lib/pliny/templates/model_migration.erb
pliny-0.24.0 lib/pliny/templates/model_migration.erb
pliny-0.23.0 lib/pliny/templates/model_migration.erb
pliny-0.22.0 lib/pliny/templates/model_migration.erb
pliny-0.21.0 lib/pliny/templates/model_migration.erb
pliny-0.20.2 lib/pliny/templates/model_migration.erb