Skip to content

Commit 087c3c0

Browse files
committed
Updated docs
1 parent bf6806e commit 087c3c0

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

docs/api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
API
22
---
33

4-
.. module:: flaskext.sqlalchemy
4+
.. module:: flask.ext.sqlalchemy
55

66
This part of the documentation documents all the public classes and
77
functions in Flask-SQLAlchemy.

docs/binds.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.. _binds:
22

3-
.. currentmodule:: flaskext.sqlalchemy
3+
.. currentmodule:: flask.ext.sqlalchemy
44

55
Multiple Databases with Binds
66
=============================

docs/contexts.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.. _contexts:
22

3-
.. currentmodule:: flaskext.sqlalchemy
3+
.. currentmodule:: flask.ext.sqlalchemy
44

55
Introduction into Contexts
66
==========================
@@ -16,7 +16,7 @@ object globally, how does the latter learn about the former? The answer
1616
is the :meth:`~SQLAlchemy.init_app` function::
1717

1818
from flask import Flask
19-
from flaskext.sqlalchemy import SQLAlchemy
19+
from flask.ext.sqlalchemy import SQLAlchemy
2020

2121
db = SQLAlchemy()
2222

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Flask-SQLAlchemy
44
================
55

6-
.. module:: flaskext.sqlalchemy
6+
.. module:: flask.ext.sqlalchemy
77

88
Flask-SQLAlchemy is an extension for `Flask`_ that adds support for
99
`SQLAlchemy`_ to your application. It requires SQLAlchemy 0.6 or

docs/models.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.. _models:
22

3-
.. currentmodule:: flaskext.sqlalchemy
3+
.. currentmodule:: flask.ext.sqlalchemy
44

55
Declaring Models
66
================

docs/queries.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. currentmodule:: flaskext.sqlalchemy
1+
.. currentmodule:: flask.ext.sqlalchemy
22

33
Select, Insert, Delete
44
======================

docs/quickstart.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Quickstart
44
==========
55

6-
.. currentmodule:: flaskext.sqlalchemy
6+
.. currentmodule:: flask.ext.sqlalchemy
77

88
Flask-SQLAlchemy is fun to use, incredibly easy for basic applications, and
99
readily extends for larger applications. For the complete guide, checkout out
@@ -22,7 +22,7 @@ provides a class called `Model` that is a declarative base which can be
2222
used to declare models::
2323

2424
from flask import Flask
25-
from flaskext.sqlalchemy import SQLAlchemy
25+
from flask.ext.sqlalchemy import SQLAlchemy
2626

2727
app = Flask(__name__)
2828
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:////tmp/test.db'

0 commit comments

Comments
 (0)