mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Remove sqlite specificsupports_autoincrement?
which always defaults to true
This commit is contained in:
parent
4f5f59a492
commit
1457589301
2 changed files with 3 additions and 15 deletions
|
@ -180,11 +180,6 @@ module ActiveRecord
|
|||
true
|
||||
end
|
||||
|
||||
# Returns true
|
||||
def supports_autoincrement? #:nodoc:
|
||||
true
|
||||
end
|
||||
|
||||
def supports_index_sort_order?
|
||||
true
|
||||
end
|
||||
|
@ -606,11 +601,7 @@ module ActiveRecord
|
|||
end
|
||||
|
||||
def default_primary_key_type
|
||||
if supports_autoincrement?
|
||||
'INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL'
|
||||
else
|
||||
'INTEGER PRIMARY KEY NOT NULL'
|
||||
end
|
||||
end
|
||||
|
||||
def translate_exception(exception, message)
|
||||
|
|
|
@ -1,10 +1,7 @@
|
|||
ActiveRecord::Schema.define do
|
||||
# For sqlite 3.1.0+, make a table with an autoincrement column
|
||||
if supports_autoincrement?
|
||||
create_table :table_with_autoincrement, :force => true do |t|
|
||||
t.column :name, :string
|
||||
end
|
||||
end
|
||||
|
||||
execute "DROP TABLE fk_test_has_fk" rescue nil
|
||||
execute "DROP TABLE fk_test_has_pk" rescue nil
|
||||
|
|
Loading…
Reference in a new issue