Sha256: d4ab5c396e81ea2922c117ed9de51dd3f2c6ee141eabaf33085814a7056513e3

Contents?: true

Size: 215 Bytes

Versions: 7

Compression:

Stored size: 215 Bytes

Contents

class CreateSystems < ActiveRecord::Migration[6.0]
  def change
    create_table :systems do |t|
      t.string :ident, limit: 15

      t.timestamps
    end
    add_index :systems, [:ident], unique: true
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
anoubis-1.0.12 db/migrate/20181018111217_create_systems.rb
anoubis-1.0.11 db/migrate/20181018111217_create_systems.rb
anoubis-1.0.10 db/migrate/20181018111217_create_systems.rb
anoubis-1.0.8 db/migrate/20181018111217_create_systems.rb
anoubis-1.0.7 db/migrate/20181018111217_create_systems.rb
anoubis-1.0.1 db/migrate/20181018111217_create_systems.rb
anoubis-1.0.0 db/migrate/20181018111217_create_systems.rb