“Buat Indeks Tabel Rel Unik” Kode Jawaban

Buat Indeks Tabel Rel Unik

class CreateFoobars < ActiveRecord::Migration
  def change
    create_table :foobars do |t|
      t.string :name, index: {unique: true}
    end
  end
end
Davidosky

Buat Indeks Tabel Rel Unik

class CreateFoos < ActiveRecord::Migration
  def change
    create_table :foos do |t|
      t.string :bar, :null => false

      t.index :bar, unique: true
    end
  end
end
Davidosky

Jawaban yang mirip dengan “Buat Indeks Tabel Rel Unik”

Pertanyaan yang mirip dengan “Buat Indeks Tabel Rel Unik”

Lebih banyak jawaban terkait untuk “Buat Indeks Tabel Rel Unik” di Ruby

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya