Module: ActiveRecord::ConnectionAdapters::SQLite3::SchemaStatements
- Included in:
- ActiveRecord::ConnectionAdapters::SQLite3Adapter
- Defined in:
- lib/active_record/connection_adapters/sqlite3/schema_statements.rb
Overview
:nodoc:
Instance Method Summary collapse
- #add_foreign_key(from_table, to_table, **options) ⇒ Object
- #create_schema_dumper(options) ⇒ Object
-
#indexes(table_name) ⇒ Object
Returns an array of indexes for the given table.
- #remove_foreign_key(from_table, to_table = nil, **options) ⇒ Object
Instance Method Details
#add_foreign_key(from_table, to_table, **options) ⇒ Object
55 56 57 58 59 60 |
# File 'lib/active_record/connection_adapters/sqlite3/schema_statements.rb', line 55 def add_foreign_key(from_table, to_table, **) alter_table(from_table) do |definition| to_table = strip_table_name_prefix_and_suffix(to_table) definition.foreign_key(to_table, **) end end |
#create_schema_dumper(options) ⇒ Object
81 82 83 |
# File 'lib/active_record/connection_adapters/sqlite3/schema_statements.rb', line 81 def create_schema_dumper() SQLite3::SchemaDumper.create(self, ) end |
#indexes(table_name) ⇒ Object
Returns an array of indexes for the given table.
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
# File 'lib/active_record/connection_adapters/sqlite3/schema_statements.rb', line 8 def indexes(table_name) exec_query("PRAGMA index_list(#{quote_table_name(table_name)})", "SCHEMA").map do |row| # Indexes SQLite creates implicitly for internal use start with "sqlite_". # See https://www.sqlite.org/fileformat2.html#intschema next if row["name"].starts_with?("sqlite_") index_sql = query_value(" SELECT sql\n FROM sqlite_master\n WHERE name = \#{quote(row['name'])} AND type = 'index'\n UNION ALL\n SELECT sql\n FROM sqlite_temp_master\n WHERE name = \#{quote(row['name'])} AND type = 'index'\n SQL\n\n /\\bON\\b\\s*\"?(\\w+?)\"?\\s*\\((?<expressions>.+?)\\)(?:\\s*WHERE\\b\\s*(?<where>.+))?\\z/i =~ index_sql\n\n columns = exec_query(\"PRAGMA index_info(\#{quote(row['name'])})\", \"SCHEMA\").map do |col|\n col[\"name\"]\n end\n\n orders = {}\n\n if columns.any?(&:nil?) # index created with an expression\n columns = expressions\n else\n # Add info on sort order for columns (only desc order is explicitly specified,\n # asc is the default)\n if index_sql # index_sql can be null in case of primary key indexes\n index_sql.scan(/\"(\\w+)\" DESC/).flatten.each { |order_column|\n orders[order_column] = :desc\n }\n end\n end\n\n IndexDefinition.new(\n table_name,\n row[\"name\"],\n row[\"unique\"] != 0,\n columns,\n where: where,\n orders: orders\n )\n end.compact\nend\n", "SCHEMA") |
#remove_foreign_key(from_table, to_table = nil, **options) ⇒ Object
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'lib/active_record/connection_adapters/sqlite3/schema_statements.rb', line 62 def remove_foreign_key(from_table, to_table = nil, **) to_table ||= [:to_table] = .except(:name, :to_table) foreign_keys = foreign_keys(from_table) fkey = foreign_keys.detect do |fk| table = to_table || begin table = [:column].to_s.delete_suffix("_id") Base.pluralize_table_names ? table.pluralize : table end table = strip_table_name_prefix_and_suffix(table) fk_to_table = strip_table_name_prefix_and_suffix(fk.to_table) fk_to_table == table && .all? { |k, v| fk.[k].to_s == v.to_s } end || raise(ArgumentError, "Table '#{from_table}' has no foreign key for #{to_table || options}") foreign_keys.delete(fkey) alter_table(from_table, foreign_keys) end |