diff --git a/tables.go b/tables.go index a2976516..f6043183 100644 --- a/tables.go +++ b/tables.go @@ -108,18 +108,6 @@ func (f fizzer) CreateTable(name string, opts map[string]interface{}, help plush } } - var foundPrimary bool - for _, c := range t.Columns { - if c.Primary { - foundPrimary = true - break - } - } - - if !foundPrimary { - t.Columns = append([]Column{INT_ID_COL}, t.Columns...) - } - if enabled, exists := t.Options["timestamps"]; !exists || enabled == true { t.Timestamps() }