]> git.openstreetmap.org Git - rails.git/blobdiff - db/migrate/018_create_acls.rb
Standardise on double quoted strings
[rails.git] / db / migrate / 018_create_acls.rb
index d82020892eca9863391da5da324768220f926712..e5a524dc1de26970afad96681d515bf0fbb107a6 100644 (file)
@@ -1,12 +1,12 @@
-require 'lib/migrate'
+require "migrate"
 
 class CreateAcls < ActiveRecord::Migration
   def self.up
-    create_table "acls", myisam_table do |t|
-      t.column "id",      :integer_pk, :null => false
-      t.column "address", :inet,       :null => false
-      t.column "netmask", :inet,       :null => false
-      t.column "k",       :string,     :null => false
+    create_table "acls", :id => false do |t|
+      t.column "id",      :primary_key, :null => false
+      t.column "address", :inet, :null => false
+      t.column "netmask", :inet, :null => false
+      t.column "k",       :string, :null => false
       t.column "v",       :string
     end