Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacug committed Mar 13, 2019
1 parent 1ebe2c8 commit c100285
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
### 2.0.0

**Ocean+ Library:**

* General improvement of all the features
* Add Country and Region filters
* Add link to specific pdf page
* Download filtered csv

### 1.0.1

**Ocean+ Library:**
Expand Down
27 changes: 24 additions & 3 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,22 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 20190213130627) do
ActiveRecord::Schema.define(version: 20190312130627) do

# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"

create_table "countries", force: :cascade do |t|
t.string "name", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end

create_table "countries_metadata", id: false, force: :cascade do |t|
t.bigint "metadata_id", null: false
t.bigint "country_id", null: false
end

create_table "metadata", force: :cascade do |t|
t.string "category", null: false
t.string "resource"
Expand All @@ -32,8 +43,18 @@
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "license_number"
t.string "region"
t.string "country"
t.string "pdf_link"
end

create_table "metadata_regions", id: false, force: :cascade do |t|
t.bigint "metadata_id", null: false
t.bigint "region_id", null: false
end

create_table "regions", force: :cascade do |t|
t.string "name", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end

end

0 comments on commit c100285

Please sign in to comment.