Sha256: 21e9fd4b3098c3c80a8fac62357fd44851a0052c286accdc9b8e4b08c0829e91

Contents?: true

Size: 286 Bytes

Versions: 1

Compression:

Stored size: 286 Bytes

Contents

require File.join(File.dirname(__FILE__), "migration_helper")

Sequel.migration do
  up do
    alter_table(:features) do
      add_column :fully_active, :boolean, :default => false
    end
  end

  down do
    alter_table(:features) do
      drop_column :fully_active
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
glowworm-0.3.0 server/db_migrations/20120217090636_add_fully_active_flag_to_features.rb