Sha256: e2b27bc77697389f7af85d2f52b977b9b0effd19f62d1a6b6664bf4fdfcb42f5

Contents?: true

Size: 391 Bytes

Versions: 8

Compression:

Stored size: 391 Bytes

Contents

ActiveRecord::Schema.define do
  self.verbose = false

  create_table :api_clients, :force => true do |t|
    t.string :name, null: false
    t.column :key, "uuid", null: false
    t.column :enabled, :bool, null: false, default: true
    t.column :created_at, "timestamp with time zone", null: false
  end
  add_index :api_clients, [:name]
  add_index :api_clients, [:key], unique: true
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
stitches-5.0.0 spec/fake_app/db/schema_missing_disabled_at.rb
stitches-5.0.0.RC1 spec/fake_app/db/schema_missing_disabled_at.rb
stitches-4.2.2 spec/fake_app/db/schema_missing_disabled_at.rb
stitches-4.2.1 spec/fake_app/db/schema_missing_disabled_at.rb
stitches-4.2.0 spec/fake_app/db/schema_missing_disabled_at.rb
stitches-4.2.0.RC3 spec/fake_app/db/schema_missing_disabled_at.rb
stitches-4.2.0.RC2 spec/fake_app/db/schema_missing_disabled_at.rb
stitches-4.2.0.RC1 spec/fake_app/db/schema_missing_disabled_at.rb