diff options
author | Effy Elden <git@effy.is> | 2017-01-15 08:58:50 +1100 |
---|---|---|
committer | Effy Elden <git@effy.is> | 2017-01-15 08:58:50 +1100 |
commit | d6bc0e8db4d25a4533feb56164b0d9cd3ef2af6e (patch) | |
tree | 60ab246a9e55deb6a64efee86a6a062cac94f440 /db/migrate | |
parent | f63f0c46253f8d3c5524645160cbfe0c70cdec2f (diff) |
Add tracking of OAuth app that posted a status, extend OAuth apps to have optional website field, add application details to API, show application name and website on detailed status views. Resolves #11
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20170114194937_add_application_to_statuses.rb | 5 | ||||
-rw-r--r-- | db/migrate/20170114203041_add_website_to_oauth_application.rb | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/db/migrate/20170114194937_add_application_to_statuses.rb b/db/migrate/20170114194937_add_application_to_statuses.rb new file mode 100644 index 000000000..b699db2ac --- /dev/null +++ b/db/migrate/20170114194937_add_application_to_statuses.rb @@ -0,0 +1,5 @@ +class AddApplicationToStatuses < ActiveRecord::Migration[5.0] + def change + add_column :statuses, :application_id, :int + end +end diff --git a/db/migrate/20170114203041_add_website_to_oauth_application.rb b/db/migrate/20170114203041_add_website_to_oauth_application.rb new file mode 100644 index 000000000..ee674be72 --- /dev/null +++ b/db/migrate/20170114203041_add_website_to_oauth_application.rb @@ -0,0 +1,5 @@ +class AddWebsiteToOauthApplication < ActiveRecord::Migration[5.0] + def change + add_column :oauth_applications, :website, :string + end +end |